python 参数传递
2021/8/4 11:06:24
本文主要是介绍python 参数传递,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
test.py
import argparse parser = argparse.ArgumentParser() parser.add_argument('-p', type=int, required=False, default=80, help='port') args = parser.parse_args() app.run(host="0.0.0.0", port=args.p)
执行的时候
python test.py -p 5120
parser.add_argument中各个参数解析
- 参数1:names/flags
>>> parser.add_argument('--foo','-f') #这种形式表示可变参数,前缀可根据parse.ArgumentParser()里面的prefix_char参数来定义 >>> parser.add_argument('foo') #这种形式表示位置参数
- help:自定义add_argument()中参数的帮助信息
- type:默认情况下对于命令行参数是直接解析成字符串类型,type可以指定参数类型为其它
>>> parser.add_argument('foo', type=int) #指定参数类型为整型 >>> parser.add_argument('bar', type=open) #指定对于参数进行open操作
- choices:用于界定参数的取值范围
>>> parser.add_argument('door', type=int, choices=range(1, 4)) >>> parser.add_argument('-integers', type=str, help='传入的数字',default='3',choices=['1','2','3'])
- required:用来设置必选参数,设定后在命令行不使用会报错
>>> parser.add_argument('--foo',required=True,default=3)
这里如果不给--foo传数据,模型会报错
- default:设置参数的默认值,运行命令行传入参数则覆盖默认值,没有则使用默认值
- action:用来给ArgumenParser对象判断如何处理命令行参数
action=‘store_true’/‘store_false’,store_true就代表着一旦有这个参数,做出动作“将其值标为True”,也就是没有时,默认状态下其值为False
parser.add_argument('-i',action='store_true')
这里如果python test.py -i 则输出True,运行 python test.py 则输出False
这篇关于python 参数传递的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-14获取参数学习:Python编程入门教程
- 2024-11-14Python编程基础入门
- 2024-11-14Python编程入门指南
- 2024-11-13Python基础教程
- 2024-11-12Python编程基础指南
- 2024-11-12Python基础编程教程
- 2024-11-08Python编程基础与实践示例
- 2024-11-07Python编程基础指南
- 2024-11-06Python编程基础入门指南
- 2024-11-06怎么使用python 计算两个GPS的距离功能-icode9专业技术文章分享