源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

python getopt 参数处理小示例

  • 时间:2022-05-25 17:29 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要: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表示参数的全称,=表示后面需要传值
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部