AttributeError: 'Sheet' object has no attribute 'write'
时间: 2023-08-14 14:08:10 浏览: 111
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误通常出现在使用 xlrd 库中的 Sheet 对象的 write() 方法时。这是因为 xlrd 库只支持Excel文件的读取,不支持Excel文件的写入操作,所以 Sheet 对象没有 write() 方法。如果你需要对 Excel 文件进行写入操作,应该使用 xlwt 或 openpyxl 等其他库来完成。
阅读全文