I'm having a small issue with argparse. I have an option xlim which is the xrange of a plot. I want to be able to pass numbers like -2e-5. However this does not work - argparse interprets this is a positional argument. If I do -0.00002 it works - argparse reads it as a negative number. Is it possible to have able to read in -2e-3?
The code is below, and an example of how I would run it is:
./blaa.py --xlim -2.e-3 1e4
If I do the following it works:
./blaa.py --xlim -0.002 1e4
The code:
parser.add_argument('--xlim', nargs = 2,
help = 'X axis limits',
action = 'store', type = float,
default = [-1.e-3, 1.e-3])
Whilst I can get it to work this way I would really rather be able to use scientific notation. Anyone have any ideas?
Cheers
-2e-5help? – nmichaels Jan 26 at 21:00./blah.py -xlim "-.2e-5" 1e5is --xlim: expected 2 argument(s). If I use \- it thinks its a string and then complains because it should be a float – user1027686 Jan 26 at 21:05--xlowerand--xupperwith the quoted notation:--xlower="-1.e-3". That works – Chris Jan 26 at 21:08