• python getopt使用


    python中 getopt 模块,
    该模块是专门用来处理命令行参数的


    函数getopt(args, shortopts, longopts = [])

    参数args一般是sys.argv[1:]
    shortopts 短格式 (-)
    longopts 长格式(--)
    命令行中输入:

    python test.py -i 127.0.0.1 -p 80 55 66
    python test.py --ip=127.0.0.1 --port=80 55 66


    下面的代码:

    def usage():
        print(
            """
                -h --help     print the help
                -i --ip       Maximim number of connections
                -p --port     to monitor the port number
            """
        )
    
    try:
        options,args = getopt.getopt(sys.argv[1:],"hp:i:",["help","ip=","port="])
    except getopt.GetoptError:
        sys.exit()
    
    for name,value in options:
        if name in ("-h","--help"):
            usage()
        if name in ("-i","--ip"):
            print('ip is----',value)
        if name in ("-p","--port")
            print('port is----',value)
    

    “hp:i:”
      短格式 --- h 后面没有冒号:表示后面不带参数,p:和 i:后面有冒号表示后面需要参数

    ["help","ip=","port="]

      长格式 --- help后面没有等号=,表示后面不带参数,其他两个有=,表示后面需要参数
      返回值 options 是个包含元祖的列表,每个元祖是分析出来的格式信息,比如 [('-i','127.0.0.1'),('-p','80')] ;
      返回值 args 是个列表,包含那些没有‘-’或‘--’的参数,比如:['55','66']
      注意:定义命令行参数时,要先定义带'-'选项的参数,再定义没有‘-’的参数

    原文:https://blog.csdn.net/tianzhu123/article/details/7655499

  • 相关阅读:
    树-构建二叉树
    爬虫-scrapy框架详解(17)
    How to identify the HBA cards/ports and WWN in Linux
    NetBackup常用网络端口整理
    keepalived+MySQL实现高可用
    nginx配置https双向验证(ca机构证书+自签证书)
    systemd设置nginx开机自启动
    Keepalived+Nginx搭建主从高可用并带nginx检测
    windows 挂在EMC 存储
    linux时间同步,ntpd、ntpdate
  • 原文地址:https://www.cnblogs.com/linyouyi/p/9955879.html
Copyright © 2020-2023  润新知