Python编程argparse入门浅析


Posted in Python onFebruary 07, 2018

本文研究的主要是Python编程argparse的相关内容,具体介绍如下。

#aaa.py
#version 3.5
import os    #这句是没用了,不知道为什么markdown在编辑代码时,不加这一句,就不能显示代码高亮[汗]
import argparse


parser = argparse.ArgumentParser(description='Process some integers...')  #初始化一个分析器
#parser.add_argument(中的参数)
#__init__(self, option_strings, dest, nargs=None, const=None, default=None, type=None, choices=None, required=False, help=None, metavar=None)
parser.add_argument('integers',metavar='N',type=int,nargs='+',
          help='an integer for the accumulator')    
          #这是一个添加【位置参数】
          #第一个参数是自定义的参数名,在代码中用来计算的(parser.parse_args().integers*2)


parser.add_argument('--sum',dest='accumulate',action='store_const',
          const=sum,default=max,
          help='sum the integers(default:find the max)')
          #这是一个添加【可选参数】
          #第一个参数是自定义的参数【在代码中的使用parser.parse_args().sum】【在系统命令行中的使用:>python aaa.py --sum



args = parser.parse_args()
print(args)       #Namespace(accumulate=<built-in function sum>, integers2=[1, 2, 3, 4])
print(args.integers)  #integers要与上面的对应
print(args.accumulate(args.integers))  #accumulate要与上面的对应

在系统命令行中进行参数调用结果如下:

D:\Program Files (x86)\Python35>python aaa.py -h
usage: aaa.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)

D:\Program Files (x86)\Python35>python aaa.py 1 2 3 4 --sum
Namespace(accumulate=<built-in function sum>, integers2=[1, 2, 3, 4])
[1, 2, 3, 4]
10

D:\Program Files (x86)\Python35>python aaa.py 1 2 3 4
Namespace(accumulate=<built-in function max>, integers2=[1,2,3,4])
[1, 2, 3, 4]
4

在python交互模式下运行结果如下:

Python编程argparse入门浅析

附件

Keyword Arguments:
|
| - option_strings -- A list of command-line option strings which
| should be associated with this action.
|
| - dest -- The name of the attribute to hold the created object(s)
|
| - nargs -- The number of command-line arguments that should be
| consumed. By default, one argument will be consumed and a single
| value will be produced. Other values include:
| - N (an integer) consumes N arguments (and produces a list)
| - '?' consumes zero or one arguments
| - '*' consumes zero or more arguments (and produces a list)
| - '+' consumes one or more arguments (and produces a list)
| Note that the difference between the default and nargs=1 is that
| with the default, a single value will be produced, while with
| nargs=1, a list containing a single value will be produced.
|
| - const -- The value to be produced if the option is specified and the
| option uses an action that takes no values.
|
| - default -- The value to be produced if the option is not specified.
|
| - type -- A callable that accepts a single string argument, and
| returns the converted value. The standard Python types str, int,
| float, and complex are useful examples of such callables. If None,
| str is used.
|
| - choices -- A container of values that should be allowed. If not None,
| after a command-line argument has been converted to the appropriate
| type, an exception will be raised if it is not a member of this
| collection.
|
| - required -- True if the action must always be specified at the
| command line. This is only meaningful for optional command-line
| arguments.
|
| - help -- The help string describing the argument.
|
| - metavar -- The name to be used for the option's argument with the
| help string. If None, the 'dest' value will be used as the name.

总结

以上就是本文关于Python编程argparse入门浅析的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!

Python 相关文章推荐
python通过exifread模块获得图片exif信息的方法
Mar 16 Python
Python连接SQLServer2000的方法详解
Apr 19 Python
浅谈Django自定义模板标签template_tags的用处
Dec 20 Python
python opencv实现图片旋转矩形分割
Jul 26 Python
python实现二维插值的三维显示
Dec 17 Python
python web框架中实现原生分页
Sep 08 Python
Windows下pycharm创建Django 项目(虚拟环境)过程解析
Sep 16 Python
Django重设Admin密码过程解析
Feb 10 Python
python爬虫爬取淘宝商品比价(附淘宝反爬虫机制解决小办法)
Dec 03 Python
Django权限控制的使用
Jan 07 Python
Python字节单位转换(将字节转换为K M G T)
Mar 02 Python
pytorch中的 .view()函数的用法介绍
Mar 17 Python
PyQt5主窗口动态加载Widget实例代码
Feb 07 #Python
学习python中matplotlib绘图设置坐标轴刻度、文本
Feb 07 #Python
PyQt5打开文件对话框QFileDialog实例代码
Feb 07 #Python
python OpenCV学习笔记直方图反向投影的实现
Feb 07 #Python
Python实现上下班抢个顺风单脚本
Feb 07 #Python
Python SqlAlchemy动态添加数据表字段实例解析
Feb 07 #Python
Python实现抢购IPhone手机
Feb 07 #Python
You might like
写一段简单的PHP建立文件夹代码
2015/01/06 PHP
linux下为php添加iconv模块的方法
2016/02/28 PHP
php判断是否为ajax请求的方法
2016/11/29 PHP
JavaScript入门教程(2) JS基础知识
2009/01/31 Javascript
Json字符串转换为JS对象的高效方法实例
2013/05/01 Javascript
Jquery中的$.each获取各种返回类型数据的使用方法
2015/05/03 Javascript
jqGrid表格应用之新增与删除数据附源码下载
2015/12/02 Javascript
jQuery使用$.ajax进行即时验证实例详解
2015/12/11 Javascript
vue.js表格分页示例
2016/10/18 Javascript
JavaScript比较两个数组的内容是否相同(推荐)
2017/05/02 Javascript
javascript实现Java中的Map对象功能的实例详解
2017/08/21 Javascript
Vue打包后出现一些map文件的解决方法
2018/02/13 Javascript
React.js绑定this的5种方法(小结)
2018/06/05 Javascript
vue服务端渲染缓存应用详解
2018/09/12 Javascript
node.js调用C++函数的方法示例
2018/09/21 Javascript
jQuery中each和js中forEach的区别分析
2019/02/27 jQuery
详解vue中使用vue-quill-editor富文本小结(图片上传)
2019/04/24 Javascript
jQuery实现B2B网站后台管理系统侧导航
2020/07/08 jQuery
selenium 反爬虫之跳过淘宝滑块验证功能的实现代码
2020/08/27 Javascript
vue-cli3项目打包后自动化部署到服务器的方法
2020/09/16 Javascript
python strip()函数 介绍
2013/05/24 Python
跟老齐学Python之再深点,更懂list
2014/09/20 Python
Python实现字典的key和values的交换
2015/08/04 Python
Python实现爬虫设置代理IP和伪装成浏览器的方法分享
2018/05/07 Python
mac安装pytorch及系统的numpy更新方法
2018/07/26 Python
python如何发布自已pip项目的方法步骤
2018/10/09 Python
python获取交互式ssh shell的方法
2019/02/14 Python
Python 实现将大图切片成小图,将小图组合成大图的例子
2020/03/14 Python
MATCHESFASHION.COM美国官网:英国奢侈品零售商
2018/10/29 全球购物
公司员工安全协议书
2014/11/21 职场文书
2014年助理政工师工作总结
2014/12/19 职场文书
小班下学期幼儿评语
2014/12/30 职场文书
2015年世界卫生日活动总结
2015/02/09 职场文书
我的1919观后感
2015/06/03 职场文书
让生命充满爱观后感
2015/06/08 职场文书
七年级作文之关于奶奶
2019/10/29 职场文书