最佳答案
考虑以下几点:
with open(path, mode) as f:
return [line for line in f if condition]
文件将被正确关闭,还是使用return
以某种方式绕过上下文管理器?