最佳答案
我正在通读 Argparse模块。我卡住了什么元变量和行动的意思
>>> parser.add_argument('integers', metavar='N', type=int, nargs='+',
... help='an integer for the accumulator')
>>> parser.add_argument('--sum', dest='accumulate', action='store_const',
... const=sum, default=max,
... help='sum the integers (default: find the max)')
我可能错过了,但从我读到的,我无法找到定义的 metavar
和
它们到底是什么意思?