Python’s with statement provides a very convenient way of dealing
with the situation where you have to do a setup and teardown to
make something happen. A very good example for this is the
situation where you want to gain a handler to a file, read data
from the file and the close the file handler.
有一些任务,可能事先需要设置,事后做清理工作。对于这种场景,Python的with语句提供了一种非常方便的处理方式。一个很好的例子是文件处理,你需要获取一个文件句柄,从文件中读取数据,然后关闭文件句柄。
Without the with statement, one would write something along the
lines of: 如果不用with语句,代码如下: