vote up 12 vote down star
1

Is there a way to make Python's optparse print the default value of an option or flag when showing the help with --help?

flag

73% accept rate

2 Answers

vote up 18 vote down check

Try using the %default string placeholder:

# This example taken from http://docs.python.org/library/optparse.html#generating-help
parser.add_option("-m", "--mode",
                  default="intermediate",
                  help="interaction mode: novice, intermediate, "
                       "or expert [default: %default]")
link|flag
1  
Great to know! I wasn't aware of this... – jkp Aug 10 at 12:03
vote up 3 vote down

And if you need programmatic access to the default values, you can get to them via the defaults attribute of the parser (it's a dict)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.