6

我的应用程序是一个专门的文件比较实用程序,显然只比较一个文件没有意义,因此nargs='+'不太合适。

nargs=N仅排除最多N参数,但只要至少有两个参数,我就需要接受无限数量的参数。

4

2 回答 2

18

简短的回答是你不能这样做,因为 nargs 不支持像“2+”这样的东西。

长答案是您可以使用以下方法解决此问题:

parser = argparse.ArgumentParser(usage='%(prog)s [-h] file file [file ...]')
parser.add_argument('file1', nargs=1, metavar='file')
parser.add_argument('file2', nargs='+', metavar='file', help=argparse.SUPPRESS)
namespace = parser.parse_args()
namespace.file = namespace.file1 + namespace.file2

您需要的技巧是:

  • 用于usage向解析器提供您自己的使用字符串
  • 用于metavar在帮助字符串中显示具有不同名称的参数
  • 用于SUPPRESS避免显示变量之一的帮助
  • 合并两个不同的变量,只需向Namespace解析器返回的对象添加一个新属性

上面的示例生成以下帮助字符串:

usage: test.py [-h] file file [file ...]

positional arguments:
  file

optional arguments:
  -h, --help  show this help message and exit

并且当传递的参数少于两个时仍然会失败:

$ python test.py arg
usage: test.py [-h] file file [file ...]
test.py: error: too few arguments
于 2011-12-07T06:46:21.383 回答
6

你不能做这样的事情:

import argparse

parser = argparse.ArgumentParser(description = "Compare files")
parser.add_argument('first', help="the first file")
parser.add_argument('other', nargs='+', help="the other files")

args = parser.parse_args()
print args

当我运行它时,-h我得到:

usage: script.py [-h] first other [other ...]

Compare files

positional arguments:
  first       the first file
  other       the other files

optional arguments:
  -h, --help  show this help message and exit

当我只使用一个参数运行它时,它将不起作用:

usage: script.py [-h] first other [other ...]
script.py: error: too few arguments

但是两个或更多的论点是好的。它打印三个参数:

Namespace(first='one', other=['two', 'three'])
于 2011-12-07T06:35:42.113 回答