Python命令行参数argv和argparse该如何使用


Posted in Python onFebruary 08, 2021

概述

运行python脚本时通过命令行方式传入运行参数通常有以下两种自建方式:

  • sys.argv - 简洁
  • argparse - 丰富,可自定义

下面详细说一下具体时使用

argv

# test_argv.py

import sys

args = sys.argv
print(f'args = {args}')

>>> output
➜ git:(master) python3 test_argv.py     
args = ['test_argv.py']
➜ git:(master) ✗ python3 test_argv.py 1 2 3
args = ['test_argv.py', '1', '2', '3']
➜ git:(master) ✗ python3 test_argv.py 1 2 3 'hello world !'
args = ['test_argv.py', '1', '2', '3', 'hello world !']

从上面可以看出,通过argv方法获取的结果:

  • 返回为list
  • 第一个参数为脚本本身
  • 如参数中间带空格,用引号即可

argparse

argparse模块的功能较为丰富,其核心是通过add_argument方法自定义入参的:标志、格式、类型和范围等特性,常用如下:

  • *name_or_flag - 定义入参名或flag,如'-n', '--number'
  • type - 指定入参类型
  • choices - 指定入参范围
  • default - 指定入参默认值
  • required - 指定该餐素是否不要,布尔类型
  • help - 参数概述

更多请参考: 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'
)

# 指定位置参数foo
parser.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 -h
usage: test_argv.py [-h] [-n NUMBER] [-o {txt,csv,doc}]
          [-d {1,2,3,4,5,6,7,8,9}]
          foo

test module of argparse

positional arguments:
 foo

optional 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 = None
output = None

# 带参数运行
➜ git:(master) ✗ python3 test_argv.py -n 33 --output txt
args = 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的资料请关注三水点靠木其它相关文章!

Python 相关文章推荐
Python实现的文本对比报告生成工具示例
May 22 Python
python的pip安装以及使用教程
Sep 18 Python
对matplotlib改变colorbar位置和方向的方法详解
Dec 13 Python
Python 调用 zabbix api的方法示例
Jan 06 Python
Python 中的pygame安装与配置教程详解
Feb 10 Python
python 追踪except信息方式
Apr 25 Python
Python中的__init__作用是什么
Jun 09 Python
matplotlib subplot绘制多个子图的方法示例
Jul 28 Python
Python爬虫简单运用爬取代理IP的实现
Dec 01 Python
详解Python Celery和RabbitMQ实战教程
Jan 20 Python
python如何在word中存储本地图片
Apr 07 Python
简述python四种分词工具,盘点哪个更好用?
Apr 13 Python
python 实现Requests发送带cookies的请求
Feb 08 #Python
PyCharm2020.3.2安装超详细教程
Feb 08 #Python
python 30行代码实现蚂蚁森林自动偷能量
Feb 08 #Python
如何用Python编写一个电子考勤系统
Feb 08 #Python
python编程的核心知识点总结
Feb 08 #Python
python上下文管理器异常问题解决方法
Feb 07 #Python
python中@contextmanager实例用法
Feb 07 #Python
You might like
外媒评选出10支2020年最受欢迎的Dota2战队
2021/03/05 DOTA
php 代码优化的42条建议 推荐
2009/09/25 PHP
AMFPHP php远程调用(RPC, Remote Procedure Call)工具 快速入门教程
2010/05/10 PHP
PHP curl模拟浏览器采集阿里巴巴的实现代码
2011/04/20 PHP
php解析html类库simple_html_dom(详细介绍)
2013/07/05 PHP
php生成数组的使用示例 php全组合算法
2014/01/16 PHP
php过滤所有恶意字符(批量过滤post,get敏感数据)
2014/03/18 PHP
php实现保存submit内容之后禁止刷新
2014/03/19 PHP
php实现的click captcha点击验证码类实例
2014/09/23 PHP
thinkPHP3.x常量整理(预定义常量/路径常量/系统常量)
2016/05/20 PHP
深入理解PHP类的自动载入机制
2016/09/16 PHP
jquery 必填项判断表单是否为空的方法
2008/09/14 Javascript
javascript之querySelector和querySelectorAll使用说明
2011/10/09 Javascript
jQuery登陆判断简单实现代码
2013/04/21 Javascript
jquery常用操作小结
2014/07/21 Javascript
js 左右悬浮对联广告特效代码
2014/12/12 Javascript
angularJS提交表单(form)
2015/02/09 Javascript
javascript弹性运动效果简单实现方法
2016/01/08 Javascript
Vue生命周期示例详解
2017/04/12 Javascript
基于对象合并功能的实现示例
2017/10/10 Javascript
Angular中sweetalert弹框的基本使用教程
2018/07/22 Javascript
Typescript 中的 interface 和 type 到底有什么区别详解
2019/06/18 Javascript
vue.js+elementUI实现点击左右箭头切换头像功能(类似轮播图效果)
2019/09/05 Javascript
javascript 构建模块化开发过程解析
2019/09/11 Javascript
vue实现全匹配搜索列表内容
2019/09/26 Javascript
JS中间件设计模式的深入探讨与实例分析
2020/04/11 Javascript
[42:20]Winstrike vs VGJ.S 2018国际邀请赛淘汰赛BO3 第二场 8.23
2018/08/24 DOTA
Python序列操作之进阶篇
2016/12/08 Python
python中协程实现TCP连接的实例分析
2018/10/14 Python
wxpython绘制圆角窗体
2019/11/18 Python
关于Keras Dense层整理
2020/05/21 Python
canvas 下载二维码和图片加水印的方法
2018/03/21 HTML / CSS
食品质量与安全专业毕业生求职信
2014/08/11 职场文书
单位租房协议书样本
2014/10/30 职场文书
化验室岗位职责
2015/02/14 职场文书
基于Python实现射击小游戏的制作
2022/04/06 Python