Return to Snippet

Revision: 261
at July 6, 2006 18:06 by ndegruchy


Updated Code
from optparse import OptionParser

Usage = "%s" % "untitled.py"
Parser = OptionParser(Usage)
Parser.add_option("", dest="", help = """.""")
(Options, Args) = Parser.parse_args()

Revision: 260
at July 6, 2006 18:05 by ndegruchy


Updated Code
from optparse import OptionParser

Usage = "%s" % 'untitled.py'
Parser = OptionParser(Usage)
Parser.add_option("", dest="", help = """.""")
(Options, Args) = Parser.parse_args()

Revision: 259
at July 6, 2006 18:04 by ndegruchy


Initial Code
from optparse import OptionParser

Usage = \"%s\" % \'untitled.py\'
Parser = OptionParser(Usage)
Parser.add_option(\"\", dest=\"\", help = \"\"\"\"\"\")
(Options, Args) = Parser.parse_args()

Initial URL

                                

Initial Description

                                

Initial Title
OptParse Option Parsing

Initial Tags
textmate, python

Initial Language
Python