关于python:argparse模块如何添加没有任何参数的选项?

argparse module How to add option without any argument?

我用argparse创建了一个脚本。

该脚本需要将配置文件名作为选项,用户可以指定是否需要完全继续该脚本,或者只模拟该脚本。

要传递的参数:./script -f config_file -s./script -f config_file

对于-f config_文件部分是可以的,但是它一直在向我询问-s的参数,这些参数是可选的,不应该后跟任何参数。

我尝试过:

1
2
3
4
5
6
7
8
9
10
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

出现以下错误:

1
2
3
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 kling建议使用action='store_true'

1
2
3
4
5
6
7
8
9
>>> 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


要创建不需要值的选项,请将它的action文档设置为'store_const''store_true''store_false'

例子:

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