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.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to