In Python, if I return inside a quot;withquot; block, will the file still close?(在 Python 中,如果我在一个“with中返回.块,文件还会关闭吗?)
问题描述
考虑以下几点:
with open(path, mode) as f:
return [line for line in f if condition]
文件会正确关闭,还是使用 return
以某种方式绕过 上下文管理器一个>?
Will the file be closed properly, or does using return
somehow bypass the context manager?
推荐答案
是的,它就像 try
块之后的 finally
块,即它总是执行(除非当然,python 进程以一种不寻常的方式终止).
Yes, it acts like the finally
block after a try
block, i.e. it always executes (unless the python process terminates in an unusual way of course).
PEP-343 的一个例子中也提到过这是 with
语句的规范:
It is also mentioned in one of the examples of PEP-343 which is the specification for the with
statement:
with locked(myLock):
# Code here executes with myLock held. The lock is
# guaranteed to be released when the block is left (even
# if via return or by an uncaught exception).
但值得一提的是,如果不将整个 with
块放入 try..除了
块,这通常不是人们想要的.
Something worth mentioning is however, that you cannot easily catch exceptions thrown by the open()
call without putting the whole with
block inside a try..except
block which is usually not what one wants.
这篇关于在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗?
基础教程推荐
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 筛选NumPy数组 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01