1. 首页
  2. 数据库
  3. 其它
  4. python getopt 参数处理小示例

python getopt 参数处理小示例

上传者: 2020-12-31 03:56:24上传 PDF文件 22.98KB 热度 16次
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表示参数的
下载地址
用户评论