python内置函数open打开文件并返回对应的file object,如果文件不存在则引发FileNotFoundError异常,如果文件存在却不能被打开,则引发OSError异常。open函数是python专门用于读写文件的函数。
open(file, mode='r', buffering=- 1, encoding=None, errors=None, newline=None, closefd=True, opener=None)
file object
以读模式打开文件
f = open('data.txt', 'r', encoding='utf-8')
以写模式打开文件
f = open("data.txt", 'w', encoding="utf-8")
打开的文件对象一定要记得在使用结束后调用colse方法关闭文件,否则将引发内存泄漏,使用with 关键字可以避免遗忘关闭文件
with open("data.txt", 'r', encoding="utf-8")as f:
pass
QQ交流群: 211426309