Nirnimesh wrote:
> On May 25, 3:07 am, Nirnimesh <[EMAIL PROTECTED]> wrote:
>> I'm using optparse.OptionParser for parsing command line arguments.
>>
>> parser = optparse.OptionParser()
>> parser.add_option("-x", "--xample", help="example",
>> default="nothing",
>> dest="ex")
>> options
On May 25, 3:07 am, Nirnimesh <[EMAIL PROTECTED]> wrote:
> I'm using optparse.OptionParser for parsing command line arguments.
>
> parser = optparse.OptionParser()
> parser.add_option("-x", "--xample", help="example",
> default="nothing",
> dest="ex")
> options = parser.parse_args()[0]
>
I'm using optparse.OptionParser for parsing command line arguments.
parser = optparse.OptionParser()
parser.add_option("-x", "--xample", help="example",
default="nothing",
dest="ex")
options = parser.parse_args()[0]
python example.py -x value
I'm in search of a method to list out all