Python上下文管理器(context manager)
2021-06-22 11:04
标签:without logs 内存 file 管理 closed blog 分配 class 如果用正常的open,close 上下文管理的好处: 两段程序实际上执行的是相同的操作。我们的第一段程序就使用了上下文管理器 (with...as...)。上下文管理器有隶属于它的程序块。当隶属的程序块执行结束的时候(也就是不再缩进),上下文管理器自动关闭了文件 (我们通过f.closed来查询文件是否关闭)。我们相当于使用缩进规定了文件对象f的使用范围。 Python上下文管理器(context manager) 标签:without logs 内存 file 管理 closed blog 分配 class 原文地址:https://www.cnblogs.com/konglinqingfeng/p/9678697.html
# with context manager
with open("new.txt", "w") as f:
print(f.closed)
f.write("Hello World!")
print(f.closed)
# without context manager
f = open("new.txt", "w")
print(f.closed) # whether the file is open
f.write("Hello World!")
f.close()
print(f.closed)
文章标题:Python上下文管理器(context manager)
文章链接:http://soscw.com/index.php/essay/97343.html