AttributeError: 'Worksheet' object has no attribute 'write_colume'
时间: 2023-11-04 22:58:23 浏览: 135
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
对不起,'Worksheet'对象没有'write_colume'属性。可能是因为您的拼写有误。正确的属性应该是'write_column'。
'write_column'属性用于在Excel工作表中写入整个列的数据。您可以按以下方式使用它:
```python
worksheet.write_column(column, data)
```
其中,'column'是要写入数据的列号,从0开始计数;'data'是要写入的数据列表。
请注意,您需要确保已经正确导入并初始化了Excel工作表对象。如果问题仍然存在,请提供更多的背景信息和相关代码,以便我可以更好地帮助您解决问题。
阅读全文