AttributeError: 'Sheet' object has no attribute 'iter_rows'. Did you mean: 'get_rows'?
时间: 2024-03-25 08:34:36 浏览: 108
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
AttributeError: 'Sheet' object has no attribute 'iter_rows'. 这个错误是因为在Sheet对象上没有名为'iter_rows'的属性。你可能想使用的是'get_rows'方法。
'get_rows'方法用于获取Sheet中的所有行数据。你可以使用该方法来遍历Sheet中的每一行数据。
以下是使用'get_rows'方法的示例代码:
```python
sheet = workbook['Sheet1'] # 假设Sheet名称为'Sheet1'
for row in sheet.get_rows():
for cell in row:
print(cell.value)
```
这段代码将遍历'Sheet1'中的每一行,并打印每个单元格的值。
阅读全文