AttributeError: 'Sheet' object has no attribute 'write'
时间: 2023-10-10 11:15:19 浏览: 49
AttributeError: ‘NoneType’ object has no attribute ‘children’ 错误
5星 · 资源好评率100%
This error message is indicating that you are trying to use the `write` method on a `Sheet` object, but this method is not available for this object. It is possible that you are using the wrong type of object or that you need to access a different method for writing data to the sheet.
To resolve this issue, you can try reviewing your code and checking the documentation for the object you are using to see which methods are available for writing data to the sheet. Alternatively, you can provide more information about your code and the specific line that is causing the error for further assistance.
阅读全文