python configparser模块
import configparser
ConfigParser模块在python中用来读取配置文件,配置文件的格式跟windows下的ini配置文件相似,可以包含一个或多个节(section), 每个节可以有多个参数(键=值)。使用的配置文件的好处就是不用在程序员写死,可以使程序更灵活。
python copy模块
import copy
copy仅拷贝对象本身,而不对中的子对象进行拷贝,故对子对象进行修改也会随着修改。
python math模块
import math
这是让python导入数学模块,使python支持一系列数学函数和常量
python matplotlib模块
import matplotlib.pyplot as plt
Python提供了很多模块用于数据可视化,其中matplotlib、pygal等模块
python os模块
import os
os 模块在运维工作中是很常用的一个模块。通过os模块调用系统命令。os模块可以跨平台使用。
在 import os
的时候,建议使用import os
而非from os import *
。这样可以避免os.open()
不会覆盖内置函数open()
.
os.name()
判断系统类型
python shutil模块
import shutil
shutil -- --High-level file operations 高级的文件操作模块。
os模块提供了对目录或者文件的新建/删除/查看文件属性,还提供了对文件以及目录的路径操作。比如说:绝对路径,父目录…… 但是,os文件的操作还应该包含移动 复制 打包 压缩 解压等操作,这些os模块都没有提供。
这里详细了解:https://www.cnblogs.com/MnCu8261/p/5494807.html
python Image,ImageFile模块
from PIL import Image, ImageFile
python 图像文件被阻止问题
from PIL import ImageFile
ImageFile.LOAD_TRUNCATED_IMAGES = True