我正在尝试运行此代码:
import xlrd
import os.path
import xlsxwriter
with open("arrays.xlsx", "a") as my_file:
workbook = xlsxwriter.Workbook(my_file)
worksheet = workbook.add_worksheet()
array = [1, 2, 3, 4, 5]
row = 0
for col, data in enumerate(array):
worksheet.write_column(row, 0, array)
workbook.close()
但是当我运行它时,我收到以下错误:
Traceback (most recent call last):
File "C:\Users\hp\Anaconda3\lib\zipfile.py", line 1649, in __del__
self.close()
File "C:\Users\hp\Anaconda3\lib\zipfile.py", line 1666, in close
self.fp.seek(self.start_dir)
ValueError: I/O operation on closed file.
答案 0 :(得分:2)
使用with
,您实际上不需要关闭文件。
with
语句用于包装块的执行 由上下文管理器定义的方法(参见With Statement Context Managers部分)。这允许常见try...except...finally
用法 要封装的模式以便于重用。
此处隐藏的隐式finally块将为您关闭该文件。只需删除您的明确关闭,您就可以了。