Python中的 with语句
- 在开发中有一些任务,有可能是需要事情进行设置,然后在事后又需要进行清理工作;对于这种场景,with语句就提供了很方便的处理方式;
- 最常见就是对于文件的操作;
不使用with语句
- 这样写①有可能忘记关闭文件句柄,②读取文件出现异常处理也没有进行任何的处理;
file = open("a.txt")
data = file.read()
file.close()
- 改为有处理版本(这样代码看起来有点冗长):
file = open("a.txt")
try:
data = file.read()
finally:
file.close()
使用with语句
with open("a.txt") as file:
data = file.read()