下面是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,则必须将目录路径指定为输入。