Python getopt模块处理命令行选项实例
getopt模块用于抽出命令行选项和参数,也就是sys.argv命令行选项使得程序的参数更加灵活。支持短选项模式和长选项模式例如 python scriptname.py -f ‘hello’ –directory-prefix=/home -t –format ‘a’ ‘b’复制代码 代码如下:import getopt, sysshortargs = ‘f:t’longargs = [‘directory-prefix=’, ‘format’]opts, args = getopt.getopt( sys.argv[1:], shortargs, longargs )getopt.get
用户评论