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
た
action (action="store_const", etc)
。それらは実際にはどういう意味ですか?