发布网友 发布时间:2022-04-24 05:41
共1个回答
热心网友 时间:2022-04-18 14:52
argparse是用于脚本带参数使用的,假设你有如下脚本名为prog.py,内容如下:
import argparse
parser = argparse.ArgumentParser(description='Process some integers.')
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)')
args = parser.parse_args()
print args.accumulate(args.integers)
你在控制台终端上输入python prog.py -h即可获得帮助说明
$ python prog.py -h
usage: prog.py [-h] [--sum] N [N ...]
Process some integers.
positional arguments:
N an integer for the accumulator
optional arguments:
-h, --help show this help message and exit
--sum sum the integers (default: find the max)
在再终端带参数输入命令行中,即可求得值
$ python prog.py 1 2 3 4
4
$ python prog.py 1 2 3 4 --sum
10