Python:使用argparse显示输入参数中的顺序



在Python中,使用argparse,当使用-h调用脚本时,是否有方法直接指定参数在屏幕上显示的顺序?

更具体地说,我想在之后显示一些参数

我相信顺序就是add_argument(对于每个组(的顺序,因为它们在内部存储在列表中。

例如:

import argparse
args = ('foo','bar','baz','qux')
#This is not the order the get printed in, so it's not using a dict...
print (set(args))  
parser = argparse.ArgumentParser()
for x in args:
    parser.add_argument('--{0}'.format(x),help=x)
parser.parse_args(['-h'])

结果在:

set(['baz', 'foo', 'bar', 'qux'])
usage: test.py [-h] [--foo FOO] [--bar BAR] [--baz BAZ] [--qux QUX]
optional arguments:
  -h, --help  show this help message and exit
  --foo FOO   foo
  --bar BAR   bar
  --baz BAZ   baz
  --qux QUX   qux

当然,欢迎不同的python实现根据需要重新实现argparse,但由于它是纯python,我看不出他们有任何理由重新发明轮子。

相关内容

  • 没有找到相关文章

最新更新