python getopt 参数处理小示例
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表示参数的全称,=表示后面需要传值
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表示参数的全称,=表示后面需要传值
相关推荐
yuzhongdelei0 2019-12-31
学习备忘录 2019-12-16
89540596 2019-11-18
Wonder的学习 2019-11-18
invokerzhang 2019-11-10
chinademon 2019-04-02
89291642 2011-03-05
dazhi00 2019-06-21
别时茫茫 2011-05-19
heyiaiqing 2018-07-21
rookieliang 2010-03-10
生物信息学 2018-02-01
chongtianfeiyu 2018-01-24
Pythonandme 2017-12-29
83443560 2019-04-29
lzujiangge 2017-01-17
liushuibufuqin 2015-01-02
Python探路者 2019-04-26