sys模块:This module provides access to some variables used or maintained by the interpreter and to functions that interact strongly with the interpreter.这个模块可供访问由解释器使用或维护的变量和与解释器进行交互的函数。
sys.argv 命令行参数List,len(sys.argv) 是命令行参数个数。
第一个元素sys.argv[0]是程序本身路径,sys.argv[1:]为要处理的参数列表
getopt模块:
getopt.getopt(args, options[, long_options])
方法参数说明: