标签:python 占用 with open 操作文件 使用 打开 操作 手动 odi
之前我们使用open()方法操作文件,但是open打开文件后我们还需要手动释放文件对操作系统的占用。但是其实我们可以更方便的打开文件,即Python提供的上下文管理工具——with open()。
with open('32.txt', 'rt', encoding='utf8') as f:
print(f.read())
sdf
with open()方法不仅提供自动释放操作系统占用的方法,并且with open可以使用逗号分隔,一次性打开多个文件,实现文件的快速拷贝。
with open('32.txt', 'rb') as fr, open('35r.txt', 'wb') as fw:
f.write(f.read())
标签:python 占用 with open 操作文件 使用 打开 操作 手动 odi
原文地址:https://www.cnblogs.com/Lin2396/p/11557328.html