problem with sys import argv

Thomas 'PointedEars' Lahn PointedEars at web.de
Tue Mar 26 16:12:42 EDT 2013


Dave Angel wrote:

> Since the script takes a mandatory argument, run it with one.
> 
> python  myscript.py  Dave
> 
> Better would be to change the script to check len(argv) for exactly 2,
> and tell the user how he should have run it.

I would use argparse.ArgumentParser instead.

<http://docs.python.org/dev/library/argparse.html>

-- 
PointedEars

Twitter: @PointedEars2
Please do not Cc: me. / Bitte keine Kopien per E-Mail.



More information about the Python-list mailing list