On 10/24/2013 12:50 PM, Dave Angel wrote:
Actually I am using 2.7.5, the tutorial found here: http://docs.python.org/2/howto/argparse.html#id1Not sure which tutorial you're using, but the refernce page: http://docs.python.org/3.3/library/argparse.html
but the problem is the same.
import argparse def parse_my_args(): global args parser = argparse.ArgumentParser(description='Process some integers.') parser.add_argument('integers', metavar='N', type=int, nargs='+', help='an integer for the accumulator') parser.add_argument('--sum', dest='accumulate', action='store_const', const=sum, default=max, help='sum the integers (default: find the max)') args = parser.parse_args()
This is exactly what I needed to un-stick my thinking about this, thanks! thomas _______________________________________________ Tutor maillist - [email protected] To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor
