argparse模块如何添加选项没有任何参数?

我已经使用argparse创build了一个脚本。

脚本需要将configuration文件名作为选项,用户可以指定是否需要完全执行脚本或仅对其进行模拟。

要传递的参数: ./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

由于@Felix Klingbuild议使用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 

要创build一个不需要任何值的选项,请将其action [文档]设置为'store_const''store_true''store_false'

例:

 parser.add_argument('-s', '--simulate', action='store_true')