1. 首页
  2. 数据库
  3. 其它
  4. Python getopt模块处理命令行选项实例

Python getopt模块处理命令行选项实例

上传者: 2020-12-29 17:31:44上传 PDF文件 33.28KB 热度 29次
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
用户评论