Python 命令行参数

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])
 
  

方法参数说明:

  • args: 要解析的命令行参数列表。
  • options: 以字符串的格式定义,options后的冒号(:)表示该选项必须有附加的参数,不带冒号表示该选项不附加参数。
  • long_options: 以列表的格式定义,long_options 
    后的等号(=)表示如果设置该选项,必须有附加的参数,否则就不附加参数。
  • 该方法返回值由两个元素组成: 第一个是 (option, value) 元组的列表。 
    第二个是参数列表,包含那些没有’-‘或’–’的参数。



你可能感兴趣的:(Python 命令行参数)