标签: python argparse
我想基于其他参数值添加一些参数。我的意思是,像:
parser.add_argument("-e", "--example", type=str) args = parser.parse_args() if args.example = "example": parser.add_argument("-j", "--othervalue", type=str) # I know that it is failing.
有什么想法吗?