码迷,mamicode.com
首页 > 编程语言 > 详细

python命令行解释器 argparse

时间:2016-04-21 18:15:33      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:

一: argparse介绍

1.  argparse

argparse,它是Python标准库中推荐使用的编写命令行程序的工具

parser = argparse.ArgumentParser()  创建一个实例,
#parser.parse_args()    parse_args方法是从命令行的参数中返回了一些默认或指定的参数信息。
#print dir(parser)
parser.add_argument(‘square‘,help=‘ **2 ‘,type = int)  添加一个positional arguments(暂时不明白它的意思)

注: 这里参数的类型目前有两类: positional arguments   optional arguments
#parser.add_argument(‘-t‘, metavar=‘THREADS‘, type=int, default=20,
#                        help=‘Num of scan threads for each scan process, 20 by default‘)
上面的方式可以把选项添加到optional参数中。

args = parser.parse_args()
print args.square **2   注意这里,args.xxx,xxx必须是add_argument添加的参数名称

2.  add_argument 方法

add_argument:读入命令行参数,该调用有多个参数
ArgumentParser.add_argument(name or flags…[, action][, nargs][, const][, default][, type][, choices][, required][, help][, metavar][, dest])

name or flags:是必须的参数,该参数接受选项参数或者是位置参数(一串文件名

 

https://docs.python.org/2/howto/argparse.html#id1

中文参考:

http://songpengfei.iteye.com/blog/1440158          介绍argparse模块的每个参数            

http://blog.chinaunix.net/xmlrpc.php?r=blog/article&uid=21633169&id=4387657  对add_argument方法介绍的较为详细         

 

python命令行解释器 argparse

标签:

原文地址:http://www.cnblogs.com/spacepirate/p/5417928.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!