博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python之脚本参数optparse
阅读量:6256 次
发布时间:2019-06-22

本文共 751 字,大约阅读时间需要 2 分钟。

import optparseusage = "myprog[ -f 
][-s
] arg1[,arg2..]"opter=optparse.OptionParser(usage)opter.add_option("-f","--format",action="store_true",dest="format",help="format print")opter.add_option("-t", "--table", action="store", type="string", dest="table",help=u"输入一个表名")opter.add_option("-q", "--query", action="store", type="string", dest="term",help=u"查询的关键字")opter.add_option("-o", "--output", action="store", type="string", dest="outfile",help=u"输出文件")opt,args=opter.parse_args()

 

输入:-h

Options:

-h, --help show this help message and exit
-f, --format format print
-t TABLE, --table=TABLE
输入一个表名
-q TERM, --query=TERM
查询的关键字
-o OUTFILE, --output=OUTFILE
输出文件

转载于:https://www.cnblogs.com/similarface/p/5436065.html

你可能感兴趣的文章
HA Cluster—ansible批量操作
查看>>
SpringMVC那点事
查看>>
大话nbu三(配置media server存储)
查看>>
【嵌入式】内存管理,虚拟存储
查看>>
Linux多线程实践(2) --线程基本API
查看>>
从BaseActivity与BaseFragment的封装谈起
查看>>
Java Web开发相关连接
查看>>
虚拟机内存中数据细节
查看>>
ZigBee Silicon Labs/Ember EFR32MG/EM357 1.1 总体框架
查看>>
信号结构类的时间开销对比
查看>>
在Ubuntu上部署开源博客系统Blog_mini
查看>>
内部类知识
查看>>
使用 kubeadm 创建一个 kubernetes 集群
查看>>
MYSQL主从同步故障
查看>>
nginx 代理http配置实例
查看>>
阿里巴巴12位科学家发布2018年科技趋势预测
查看>>
开放的即时通信协议Jabber
查看>>
Django 的生命周期
查看>>
菜鸟也玩DNS之配置DNS的MX记录
查看>>
实战操作主机角色转移之清除宕机DC的元数据(三)
查看>>