'与'在Python 2.5之前
有没有一种方法可以将 python 'with' 语句转换为可以在以前版本的 python 中使用的格式。 4个月的工作取决于这个问题。与以前的同行相比,效率更高,但效率在这里并不重要。
Is there a means of converting a python 'with' statement into a format that can be used in previous versions of python. 4 month's work hinging on this question. with are there to be more efficient than their previous counterparts, but efficiency is not important here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
try:
except:
finally:
finally:
子句可以处理关闭。请参阅http://www.python.org/dev/peps/pep-0343/< /a> 作为替代方案。
Use
try:
except:
finally:
The
finally:
clause can handle the close.See http://www.python.org/dev/peps/pep-0343/ for alternatives.
正如 S.Lott 所说, try 和 finally 应该处理 with 子句的工作。我不确定
with
实际上捕获了任何错误,因此假设:可以替换为
As S.Lott has stated, try and finally should handle the work of the with clause. I'm not sure that
with
actually catches any errors, so given that assumption:can be replaced with