基本上与这里的问题相同:ArgumentParser: remove capitalized names of arguments from the help message但是它从未解决过...
argument
help message
您可能遇到的情况是将“目标”设置为空:
parser.add_argument('-f', '--foo',dest="\b", help="accepts foo")
这里我使用\ b删除帮助描述中生成的空间。
输出
-f, --foo accepts foo