'与'在Python 2.5之前

发布于 2024-11-19 22:41:17 字数 100 浏览 7 评论 0原文

有没有一种方法可以将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜警司 2024-11-26 22:41:18

使用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.

雨巷深深 2024-11-26 22:41:18

正如 S.Lott 所说, try 和 finally 应该处理 with 子句的工作。我不确定 with 实际上捕获了任何错误,因此假设:

with open(file_name,mode) as name: # Or whatever expression
    do_this()

可以替换为

try:
   name = open(filename,mode)   # Or whatever expression
   do_this()
finally:
   name.close()

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:

with open(file_name,mode) as name: # Or whatever expression
    do_this()

can be replaced with

try:
   name = open(filename,mode)   # Or whatever expression
   do_this()
finally:
   name.close()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文