zoukankan      html  css  js  c++  java
  • python中optparse模块用法

    optparse模块主要用来为脚本传递命令参数,采用预先定义好的选项来解析命令行参数。

    首先需要引入optparser模块,然后执行初始化,实例化一个OptionParser对象(可以带参,也可以不带参数),再为命令行添加选项,示例:

    from optparse import OptionParser
    
    usage="show something usefull
    -- for example: how to use this program"
    
    parser = OptionParser(usage) #带参的话会把参数变量的内容作为帮助信息输出

    parser.add_option("-f","--file",dest="filename",help="read picture from File",metavar="FILE",action = "store",type="string") parser.add_option("-s","--save",dest="save_mold",help="save image to file or not",default = True) (options,args)=parser.parse_args() print(options.filename) print(options.save_mold)

    各个参数的含义:

    • dest:用于保存输入的临时变量,其值通过options的属性进行访问,存储的内容是-f或 --file之后输入的参数
    • help:用于生成帮助信息
    • default: 给dest的默认值,如果用户没有在命令行参数给dest分配值,则使用默认值
    • type: 用于检查命令行参数传入的参数的数据类型是否符合要求,有string,int,float等类型
    • action: 用于指导程序在遇到命令行参数时候该如何处理,有三种值可选: store,store_false和store_true,默认值是store
    •   store:读取参数,如果参数类型符合type的要求,则将参数值传递给dest变量,作为options的一个属性供使用。
    •   store_true/store_false: 一般作为一个标记使用,分别设置dest变量的值为True和False
      • metavar: 占位字符串,用于在输出帮助信息时,代替当前命令选项的附加参数的值进行输出,只在帮助信息里有用,注意其和default的区别
  • 相关阅读:
    php $_SERVER 中的 QUERY_STRING和REQUEST_URI
    php 弱类型比较
    php函数漏洞
    web源码泄露
    sqlmap 基本使用步骤(一)
    php 调用远程url
    $_POST 和 php://input 的区别
    poj 3461 Oulipo (KMP入门)
    hdu 5417 Victor and Machine
    HDU 1885 Key Task (bfs)
  • 原文地址:https://www.cnblogs.com/jeavy/p/9502001.html
Copyright © 2011-2022 走看看