Python语言技术文档

微信小程序技术文档

php语言技术文档

jsp语言技术文档

asp语言技术文档

C#/.NET语言技术文档

html5/css技术文档

javascript

点击排行

您现在的位置:首页 > 技术文档 > Python编程技巧

python getopt 参数处理小示例

来源:中文源码网    浏览:111 次    日期:2024-05-12 03:08:38
【下载文档:  python getopt 参数处理小示例.txt 】


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表示参数的全称,=表示后面需要传值

相关内容