python getopt 参数处理小示例
程序员文章站
2022-05-14 09:04:55
opts, args = getopt.getopt(sys.argv[1:], "t:s:h", ["walletype=", "servicename=",'help'...
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表示参数的全称,=表示后面需要传值
上一篇: 大网站靠内功 小网站靠链接
推荐阅读
-
python中slice参数过长的处理方法及实例
-
Linux程序设计——用getopt处理命令行参数
-
FileNotFoundError: [Errno 2] No such file or directory: ‘errors.out‘ (python自然语言处理 5.6 最后的示例报错)
-
Python学习笔记之读取文件、OS模块、异常处理、with as语法示例
-
python采用getopt解析命令行输入参数实例
-
Python的Django框架中的表单处理示例
-
两个使用Python脚本操作文件的小示例分享
-
一个小示例告诉你Python语言的优雅之处
-
python处理中文编码和判断编码示例
-
两个使用Python脚本操作文件的小示例分享