Python open() 函数用于打开一个文件,并返回文件对象,在对文件进行处理过程都需要使用到这个函数,如果该文件无法被打开,会抛出错误 完整语法:open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None) 常用的参数有: file: 必需,文件路径(相对或者绝对路径) mode: 可选,文件打开模式,参数表见下图(图片来自https://www