AttributeError: 'int' object has no attribute 'data_type'報這個
时间: 2023-06-23 08:45:59 浏览: 265
抱歉,我之前的回答有误,cell 对象没有 data_type 属性。您可以使用 openpyxl 库中的 is_date_format 方法来判断单元格是否为日期格式,如果是则将日期格式转换为字符串。以下是修改后的代码:
```python
import openpyxl.utils.cell as cell_utils
for row in self.record_sheet.iter_rows(min_row=2, values_only=True):
row_values = []
for cell in row:
if cell is not None:
if cell_utils.is_date_format(cell.number_format): # 判断单元格是否为日期格式
cell_value = cell.value.strftime('%Y-%m-%d %H:%M:%S') # 将日期格式转换为字符串
elif cell.data_type == 'f': # 判断单元格是否为公式
cell_value = cell.value # 获取公式
cell_value = self.record_sheet[cell.coordinate].value # 获取公式计算结果
else:
cell_value = str(cell)
else:
cell_value = ""
row_values.append(cell_value)
if all(not bool(cell) for cell in row_values):
continue
treeview1.insert("", tk.END, values=row_values)
```
同样的,您也可以将相同的代码添加到第二个工作表的 for 循环中。
阅读全文