Python上下文管理使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python上下文管理使用相关的知识,希望对你有一定的参考价值。

 1 import contextlib
 2 from queue import Queue
 3 
 4 @contextlib.contextmanager
 5 def myOpen(file):
 6     f = open(file)
 7     try:
 8         yield f #返回f到with...as..语句中的f
 9     finally:
10         f.close()
11 file = r"D:\text.txt"
12 with myOpen(file) as f:
13     #在执行这块代码时,会先执行worker_state中yield前面的代码
14     #执行完这块代码后,会执行worker_state中finally的代码
15     for line in f:
16         print(line)

 

以上是关于Python上下文管理使用的主要内容,如果未能解决你的问题,请参考以下文章

python上下文管理器

python之简述上下文管理

python代码补全工具Kite

Python核心技术与实战——二一|巧用上下文管理器和with语句精简代码

片段无法转换为上下文

python上下文管理器