Python optparse
optparse的作用
optparse模块主要用来为脚本传递命令参数,采用预先定义好的选项来解析命令行参数
如何使用
只需引入optparse模块即可,执行初始化,实例化一个OptionParser对象,在为命令添加选项
使用举例
from optparse import OptionParser
usage="show something usefull
-- for example: how to use this program"
parser = OptionParser(usage) #带参的话会把参数变量的内容作为帮助信息输出