时间:2021-05-23
运行python脚本时通过命令行方式传入运行参数通常有以下两种自建方式:
下面详细说一下具体时使用
从上面可以看出,通过argv方法获取的结果:
argparse模块的功能较为丰富,其核心是通过add_argument方法自定义入参的:标志、格式、类型和范围等特性,常用如下:
更多请参考: argparse
test_argv.py
import argparse# 初始化一个parser对象parser = argparse.ArgumentParser(description='test module of argparse')# 指定-n/--number的参数# 类型为int# help为简短地说明parser.add_argument( '-n', '--number', type=int, help='args of number')# 指定-o/--output参数# 并限制类型为:['txt', 'csv', 'doc']parser.add_argument( '-o', '--output', type=str, choices=['txt', 'csv', 'doc'], help='output method')# 指定-d/--default参数# 并限制类型为:['txt', 'csv', 'doc']parser.add_argument( '-d', '--default', type=int, choices=[_ for _ in range(1, 10)], default=5, help='default')# 指定位置参数fooparser.add_argument('foo')args = parser.parse_args()print(f'args = {args}')# 获取指定参数print( f'number = {args.number}, type = {type(args.number)}\n' f'output = {args.output}, type = {type(args.output)}\n' f'default = {args.default}, type = {type(args.default)}\n' f'foo = {args.foo}, type = {type(args.foo)}')output
# -h - 打印help➜ git:(master) ✗ python3 test_argv.py -husage: test_argv.py [-h] [-n NUMBER] [-o {txt,csv,doc}] [-d {1,2,3,4,5,6,7,8,9}] footest module of argparsepositional arguments: foooptional arguments: -h, --help show this help message and exit -n NUMBER, --number NUMBER args of number -o {txt,csv,doc}, --output {txt,csv,doc} output method -d {1,2,3,4,5,6,7,8,9}, --default {1,2,3,4,5,6,7,8,9} default# 不带参数运行,结果为None➜ git:(master) ✗ python3 test_argv.py args = Namespace(number=None, output=None)number = Noneoutput = None# 带参数运行➜ git:(master) ✗ python3 test_argv.py -n 33 --output txtargs = Namespace(number=33, output='txt')number = 33, type = <class 'int'>output = txt, type = <class 'str'># 参数格式错误➜ git:(master) ✗ python3 test_argv.py -n str usage: test_argv.py [-h] [-n NUMBER] [-o {txt,csv,doc}]test_argv.py: error: argument -n/--number: invalid int value: 'str'➜ git:(master) ✗ python3 test_argv.py -o excel usage: test_argv.py [-h] [-n NUMBER] [-o {txt,csv,doc}]test_argv.py: error: argument -o/--output: invalid choice: 'excel' (choose from 'txt', 'csv', 'doc')# 默认参数 ➜ git:(master) ✗ python3 test_argv.py args = Namespace(default=5, number=None, output=None)number = None, type = <class 'NoneType'>output = None, type = <class 'NoneType'>output = 5, type = <class 'int'>以上就是Python命令行参数argv和argparse该如何使用的详细内容,更多关于Python命令行参数argv和argparse的资料请关注其它相关文章!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
argparse是python标准库里面用来处理命令行参数的库命令行参数分为位置参数和选项参数:位置参数就是程序根据该参数出现的位置来确定的如:[root@op
本篇将介绍python中sys,getopt模块处理命令行参数如果想对python脚本传参数,python中对应的argc,argv(c语言的命令行参数)是什么
一、argparse模块1、模块说明#argparse是python的标准库中用来解析命令行参数的模块,用来替代已经过时的optparse模块,argparse
执行python脚本的时候,有时需要获取命令行参数的相关信息。C语言通过argc和argv来获取参数的个数和参数的内容,python中通过sys模块的argv来
sys.argv函数通常用来读取命令行参数,其中保存了程序的文件名和命令行参数,读入的参数以元组的形式保存。下面以sys.argv[0],sys.argv[1]