我正在阅读argparse模块。我被卡住了 metavar 和 action 意味着什么
>>> 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
and
的定义action (action="store_const", etc)
。它们实际上是什么意思?