此代码
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('target', help='Specifiy who to attack!')
magic = ['fireball', 'heal', 'microwave']
parser.add_argument('-m', '--magic', nargs='*',
choices=magic,
help=('Magic'))
parsed_arguments = parser.parse_args()
生成此帮助输出
usage: Example.py [-h]
[-m [{fireball,heal,microwave} [{fireball,heal,microwave} ...]]]
target
positional arguments:
target Specifiy who to attack!
optional arguments:
-h, --help show this help message and exit
-m [{fireball,heal,microwave} [{fireball,heal,microwave} ...]], --magic [{fireball,heal,microwave} [{fireball,heal,microwave} ...]]
Magic
我认为帮助输出令人困惑,并且看起来应该最后指定目标,但这不起作用:python example.py -m fireball troll
给出argument -m/--magic: invalid choice: 'troll'
。
我意识到语言的语法变得含糊不清,但仍然有可能告诉我,因为troll
中句子最后应该存在一个单词(目标)不是-m
的参数选项。
问题:
答案 0 :(得分:1)
如前所述,POSIX系统上用于表示选项结束的标准方法是将参数和选项分开--
。
关于第二个问题:您可能需要创建自己的HelpFormatter才能实现此目的,请参阅formatter-class。您可以从默认格式化程序继承并仅覆盖必要的函数以生成使用行。