python中上下文管理with用法(python 上下文管理器)

网友投稿 355 2022-09-08


python中上下文管理with用法(python 上下文管理器)

#!/usr/bin/env python# -*- coding: utf-8 -*-import queueq=queue.Queue()q.put(1)li=[]# li.append(1)# print(li)# q.get()# li.remove(1)# print(li)import contextlib@contextlib.contextmanagerdef work_state(li,val): li.append(val)print(li)try:yield finally: li.remove(val)print(li)with work_state(li,1): q.get()

C:\Python31\python.exe D:/pythoncode/a6.py

[1]

[]

Process finished with exit code 0

#!/usr/bin/env python# -*- coding: utf-8 -*-import contextlibimport queue@contextlib.contextmanagerdef work_state(xxx,val): xxx.append(val) aaa = 123456789try:yield aaafinally: xxx.remove(val)q = queue.Queue()q.put("sl")li = []with work_state(li,1) as f:print(f) q.get()

C:\Python31\python.exe D:/pythoncode/a7.py

123456789

Process finished with exit code 0


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:django Template基础(django框架)
下一篇:Java取整与四舍五入
相关文章

 发表评论

暂时没有评论,来抢沙发吧~