首页 > 代码库 > optparse模块OptionParser学习

optparse模块OptionParser学习

optparse,是一个能够让程式设计人员轻松设计出简单明了、易于使用、符合标准的Unix命令列程式的Python模块。生成使用和帮助信息。

使用此模块前,首先需要导入模块中的类OptionParser,然后创建它的一个实例(对象):

 

 

from optparse import OptionParser

 

parser = OptionParser()  #这里也可以定义类的参数

例子1:

from optparse import OptionParser
 
def opt():
    parser=OptionParser("Usage: %prog -a command")
    parser.add_option(‘-a‘,
                      dest=‘addr‘,
                      action=‘store‘,
                      help=‘ip or iprange EX: 192.168.1,192.168.1.3 or192.168.1.1-192.168.1.100‘)
    options,args=parser.parse_args()
    return options, args

options,args=parser.parse_args()是一个方法返回的是一个元组里面包括选项和参数及optionsargs

例子2

#!/usr/bin/python
from optparse import OptionParser 
import sys
import os
parser = OptionParser() 
parser.add_option("-c","--char",   
                  dest="chars",
                  action="store_true",
                  default=False,
 
                  help="only count chars")
 
parser.add_option("-w", "--word",
                  dest="words",
                  action="store_true",
                  default=False,
                  help="only count words")
 
parser.add_option("-l", "--line",
                  dest="lines",
                  action="store_true",
                  default=False,
                  help="only count lines")
 
options, args=parser.parse_args()
print options,args


执行这个脚本 python  aa.py

{‘chars‘: False, ‘lines‘: False, ‘words‘: False} []


[root@133 day1]# python hu.py -w hu.py

{‘chars‘: False, ‘lines‘: False, ‘words‘: True}[‘hu.py‘]


这个hu.py就代表args  参数。大括号里面的代表options选项

注意:不要用模块的名字做脚本的名字,否则运行时会报错


本文出自 “渐行渐远” 博客,请务必保留此出处http://825536458.blog.51cto.com/4417836/1880766

optparse模块OptionParser学习