首页 > 编程 > Python > 正文

python getopt 参数处理小示例

2019-11-25 18:44:26
字体:
来源:转载
供稿:网友
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表示参数的全称,=表示后面需要传值
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表