I noticed that the Python 2.7 documentation includes yet another command-line parsing module. In addition to getopt
and optparse
we now have argparse
.
Why has yet another command-line parsing module been created? Why should I use it instead of optparse
? Are there new features that I should know about?