python with open报错:ValueError: I/O operation on closed file

使用关键字with时,open()返回的文件对象只在with代码块内可用。

如图在with代码块外使用,就会报错:

python with open报错:ValueError: I/O operation on closed file_第1张图片

我们可以将读取的的各行存储到一个列表里,然后再代码块外使用:

python with open报错:ValueError: I/O operation on closed file_第2张图片

你可能感兴趣的:(python,python)