python3 getopt(一看就懂)
首先:来自菜鸟教程
getopt模块
getopt模块是专门处理命令行参数的模块,用于获取命令行选项和参数,也就是sys.argv。
命令行选项使得程序的参数更加灵活。支持短选项模式 - 和长选项模式 --。
如:
短:
python test.py -c 'l' -confkey 'y'
长:
python test.py --c 'l' --confkey 'y' --authkey 'p' --version
该模块提供了两个方法及一个异常处理来解析命令行参数。
getopt.getopt 方法 getopt.getopt 方法用于解析命令行参数列表,语法格式如下:
getopt.getopt(args, options[, long_options])
方法参数说明:
该方法返回值由两个元素组成: 第一个是 (option, value) 元组的列表。 第二个是参数列表,包含那些没有 - 或 – 的参数
def main():
"""
getopt 模块的用法
"""
options, args = getopt.getopt(sys.argv[1:], '-c:-h:-a', ['c=', 'confkey=', 'authkey='])
for name, value in options:
if name in ('-c', '--c'):
ip = 'value: {0}'.format(value)
print(ip)
if name in ('-h', '--confkey'):
confkey = 'value: {0}'.format(value)
print(confkey)
if name in ('-a', '--authkey'):
authkey = 'value: {0}'.format(value)
print(authkey)
options, args = getopt.getopt(sys.argv[1:], '-c:-h:-a', ['c=', 'confkey=', 'authkey='])
'-c:-h:-a' :带冒号表示后面要跟参数,且'authkey='必须加‘=’
短格式的输出参见
|