我创建了一个使用argparse.
argparse
脚本需要一个配置文件名作为选项,用户可以指定是完全执行脚本还是只模拟它。
要传递的参数:./script -f config_file -s或./script -f config_file.
./script -f config_file -s
./script -f config_file
-f config_file 部分没问题,但它一直要求我提供 -s 的参数,这是可选的,不应跟随任何参数。
我试过这个:
parser = argparse.ArgumentParser() parser.add_argument('-f', '--file') #parser.add_argument('-s', '--simulate', nargs = '0') args = parser.parse_args() if args.file: config_file = args.file if args.set_in_prod: simulate = True else: pass
出现以下错误:
File "/usr/local/lib/python2.6/dist-packages/argparse.py", line 2169, in _get_nargs_pattern nargs_pattern = '(-*%s-*)' % '-*'.join('A' * nargs) TypeError: can't multiply sequence by non-int of type 'str'
''与而不是相同的错误0。
''
0
建议使用的那样action='store_true':
action='store_true'
>>> from argparse import ArgumentParser >>> p = ArgumentParser() >>> _ = p.add_argument('-f', '--foo', action='store_true') >>> args = p.parse_args() >>> args.foo False >>> args = p.parse_args(['-f']) >>> args.foo True