python getopt 参数处理小示例
python getopt 参数处理小示例
发布时间:2016-12-28 来源:查字典编辑
摘要:opts,args=getopt.getopt(sys.argv[1:],"t:s:h",["walletype=","servicenam...

opts, args = getopt.getopt(sys.argv[1:], "t:s:h", ["walletype=", "servicename=",'help'])

for a,o in opts:

if a in ('-t', '--walletype'):

walle_type = o

elif a in ('-s', '--servicename'):

service_name = o

elif a in ('-h', '--help'):

help = True

其中t:s:h表示参数的缩写,:表示参数后需要传值

walletype=,servicename=,help表示参数的全称,=表示后面需要传值

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新python学习
热门python学习
脚本专栏子分类