我叫全网caichen8点Com所有可以搭建,今天为大家分享搭建sys模块的主要函数介绍,结合文档说明和实例。This module provides access to some variables used or maintained by the interpreter and to functions that interact strongly with the interpreter. It is always available.
以下是主要的函数的的主要功能介绍:
sys.argv 命令行参数List,第一个元素是程序本身路径sys.exit(n) 退出程序,正常退出时exit(0)sys.version 获取Python解释程序的版本信息sys.path 返回模块的搜索路径,初始化时使用PYTHONPATH环境变量的值sys.maxsize 返回最大值sys.platform 返回操作系统平台名称sys.stdout.write('please:') val = sys.stdin.readline()[:-1]
sys 模块提供了许多函数和变量来处理 Python 运行时环境的不同部分.
处理命令行参数 sys.argv
sys模块包含系统对应的功能。我们已经学习了sys.argv列表,它包含命令行参数。
在解释器启动后, argv 列表包含了传递给脚本的所有参数, 列表的第一个元素为脚本自身的名称.
sys.argv
The list of command line arguments passed to a Python script. argv[0] is the script name (it is operating system dependent whether this is a full pathname or not). If the command was executed using the -c command line option to the interpreter, argv[0] is set to the string '-c'. If no script name was passed to the Python interpreter, argv[0] is the empty string.To loop over the standard input, or the list of files given on the command line, see the fileinput module.
importsysprint('--->',sys.argv)
print('sys.argv[0]',sys.argv[0])
print('sys.argv[1:]',sys.argv[1:])
在cmd中运行该脚本,在脚本os_func.py 后面输入 1 2 3,这些会传入sys.argv列表中。
1 import sys
2 def readfile(filename): #定义readfile函数,从文件中读出文件内容
3 '''''''''Print a file to the standard output.'''
4 f = open('test.txt')
5 while True:
6 line = f.readline()
7 if len(line) == 0:
8 break
9 print(line,)# notice comma 分别输出每行内容
10
11 f.close()
12 # Script starts from here
13 print(sys.argv)
14 if len(sys.argv) < 2:
15 print('No action specified.')
16 sys.exit()
17 if sys.argv[1].startswith('--'):
18 option = sys.argv[1][2:]
19 # fetch sys.argv[1] but without the first two characters
20 if option == 'version': #当命令行参数为-- version,显示版本号
21 print('Version 1.2')
22 elif option == 'help': #当命令行参数为--help时,显示相关帮助内容
23 print('''
24 This program prints files to the standard output.
25 Any number of files can be specified.
26 Options include:
27 --version : Prints the version number
28 --help : Display this help''')
29 else:
30 print('Unknown option.')
31 sys.exit()
32 else:
33 for filename in sys.argv[1:]: #当参数为文件名时,传入readfile,读出其内容
34 readfile(filename)
上面的脚本名称在我的系统文件中命名为os_func.py(虽然没对应好,但懒得改了)。同时在os_func.py文件的同一目录下,新建文件test.txt.
在CMD中运行os_func.py脚本:
1.直接运行os_func.py脚本,返回os_func.py的路径。
上面的代码执行的为是脚本中的这一段内容:
2.运行os_func.py脚本时,在后面加上参数 --version
上面的命令执行的是脚本中的当传入的参数大于等于2时,sys.argv[1]中的参数为‘--version',对字符串进行截取,判断截取的为'version'后,执行相应命令。
3.下面的命令执行原理同上2
4.在执行 os_func.py后面加上文件名(可以叠加:python os_func.py test.txt test2.txt test3.txt)会执行相应的脚本内容,读取文件内容
上面的命令执行的是脚本中的当传入的参数判断为文件名。
以上是今天,有关搭建技术教程篇2_既然搭建网站就先普及标准库sys下的知识就为大家分享到这里,有需要的可以进入caichen8点cOM了解。