发布者: 三寸日光
通用工具脚本经常调用命令行参数。这些命令行参数以链表形式存储于 sys 模块的 argv 变量。例如在命令行中执行 python demo.py one two three 后可以得到以下输出结果:
sys
python demo.py one two three
>>> import sys >>> print sys.argv ['demo.py', 'one', 'two', 'three']
getopt 模块使用 Unix getopt() 函数处理 sys.argv 。更多的复杂命令行处理由 argparse 模块提供。
getopt
getopt()
argparse
评论
Archiver|手机版|笨鸟自学网 ( 粤ICP备20019910号 )
GMT+8, 2025-1-22 13:23 , Processed in 0.020704 second(s), 18 queries .
© 2001-2020