标签: python python-3.x command-line argparse
是否可以在命令提示符下为所选参数获取--help消息?
实施例: cmd中的python my_program.py -h将提供整个帮助消息。 假设my_program.py需要2 cmdline参数-a和-b。我可以单独收到--help的{{1}}消息吗?
python my_program.py -h
-a
-b
--help
像这样,-a。这可能吗?