欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

5. Python常用模块

程序员文章站 2022-03-15 20:58:02
...

相关包的知识

1. os

_1. 使用os包,判断文件是否存在
    if os.path.exists('/tmp/env'):
        print('yes')
    else
        print('No')

2. re

在python中,通过内嵌集成re模块,程序员们可以直接调用来实现正则匹配

_1. 使用re包,findall
findall格式: re.findall(pattern, string, flags=0)
  • 查找string中所有与pattern中全部匹配的字符串,
  • 返回为一个列表
verList = re.findall('(?<=BMC_VER=)\d+\.\d+', data)

3. signal

signal包位于Python标准库中

  • Python所用的信号名与Linux一致,可以通过$ man 7 signal 查询
  • signal包的核心是使用signal.signal()函数来预设(register)信号处理函数

4. modules

  • netApp自封装的包
  • 为field-diag/modules目录

5. subprocess包

  • 用来运行系统命令; subprocess允许创建子进程,连接他们的输入/输出/错误管道,并拥有返回值
  • 用于取代os.system、os.spawn* 和 os.popen*
p = subprocess.Popen(["echo", "hello world"], stdout=subprocess.PIPE)

print p.communicate()

运行结果:

'hello world', None