文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Python中的 getopt模块

2023-01-31 05:42

关注

python 的 getopt 模块是一个简单实用的命令行参数解析模块。实现命令解析功能的为模块中的getopt 方法。下面主要介绍一下这个getopt方法的使用。


查看getopt 模块的帮助可以得到 getopt方法的所有解释。

    getopt(args, shortopts, longopts=[])
        getopt(args, options[, long_options]) -> opts, args
        
        Parses command line options and parameter list.  args is the
        argument list to be parsed, without the leading reference to the
        running program.  Typically, this means "sys.argv[1:]".  shortopts
        is the string of option letters that the script wants to
        recognize, with options that require an argument followed by a
        colon (i.e., the same format that Unix getopt() uses).  If
        specified, longopts is a list of strings with the names of the
        long options which should be supported.  The leading '--'
        characters should not be included in the option name.  Options
        which require an argument should be followed by an equal sign
        ('=').
        
        The return value consists of two elements: the first is a list of
        (option, value) pairs; the second is the list of program arguments
        left after the option list was stripped (this is a trailing slice
        of the first argument).  Each option-and-value pair returned has
        the option as its first element, prefixed with a hyphen (e.g.,
        '-x'), and the option argument as its second element, or an empty
        string if the option has no argument.  The options occur in the
        list in the same order in which they were found, thus allowing
        multiple occurrences.  Long and short options may be mixed.

 

getopt 方法的参数解释:

args 参数,在这个方法中会获取 sys.argv[1:] 对应的所有命令行参数。

shortopts 代表短参数。接收字符串类型的参数。若参数后面需要填写参数值,则使用冒号(:)表示。

example:

"hp:u:" 则表示参数 -h 且后面无需参数值。而参数 -p 后面需要参数值。同样参数 -u 也需要参数值。

longopts 代表长参数。 接收list类型的参数。后参数后面需要填写参数值,这使用等号(=)表示。

example:

["help","port=","user="] 则表示参数--help 后面无需填写参数值。而参数--port后面需要填写参数值,同样--user 后面也需要填写参数值。


getopt 方法的返回值解释:

getopt 方法返回两个list

第一个list 以 [(option,value),(option,value)] 的形式表示命令好中定义的参数

第二个参数 也是以list 的方式,它返回的是没有经过定义的参数,且这些参数必须在定义参数值后出现。若在定义参数中间出现,getopt方法会认为这之后的全部是为定义的参数。


使用方法举例:

#! /usr/bin/env python

import getopt
import sys


if __name__ == "__main__":
    try:
        options,args = getopt.getopt(sys.argv[1:],"hp:u:",["help","port=","user="])
    except getopt.GetoptError:
        sys.exit()

    print options
    print args


做如下执行:

$ python testgetopt.py -h --port 80 --user www aa bb cc
[('-h', ''), ('--port', '80'), ('--user', 'www')]
['aa', 'bb', 'cc']

其中 aa bb cc 都是为定义的参数,放置在定义参数值后。


若做如下执行:

$ python testgetopt.py -h --port 80 aa --user www bb cc
[('-h', ''), ('--port', '80')]
['aa', '--user', 'www', 'bb', 'cc']

将为定义的参数 aa 放置到了已定义参数 --user 之前,这getopt认为 aa 及之后的所有参数都是未定义的。这种现象显然是不OK的,因此应该避免使用这样的形式。


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯