用于脚本参数的Python argparse

时间:2018-03-05 17:05:52

标签: python python-2.7 argparse

下面是python脚本中argparse的示例代码。

group = parser.add_mutually_exclusive_group()
group.add_argument('-a','--example-a ',  action='store_true', help='--example-a ')
group.add_argument('-b','--example-b' action='store_true', help= '--example-b')
group.add_argument('-c', '--example-c', action='store_true', help= '--example-c')
group.add_argument('-d', '--directory', action='store_true', help= 'to input directory')

如果他们指定'-d'' - 目录'他们必须输入目录路径

,请帮助我如何添加参数

如果他们指定任何选项,如-a,-b,-c和选项-d,则必须将目录路径指定为输入。

0 个答案:

没有答案