python中的argparse模块怎么参数传递
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中的argparse模块怎么参数传递相关的知识,希望对你有一定的参考价值。
argparse是用于脚本带参数使用的,假设你有如下脚本名为prog.py,内容如下:
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即可获得帮助说明
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)
在再终端带参数输入命令行中,即可求得值
4
$ python prog.py 1 2 3 4 --sum
10 参考技术A 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
$ python prog.py 1 2 3 4 --sum
10 参考技术B 对象是传引用。单个数值传值。
以上是关于python中的argparse模块怎么参数传递的主要内容,如果未能解决你的问题,请参考以下文章