AttributeError: module 'openpyxl.worksheet.cell_range' has no attribute 'FillType'
时间: 2023-09-10 18:05:34 浏览: 143
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为使用了过期的openpyxl版本导致的。在新版openpyxl中,FillType已经被移除。您可以尝试使用以下代码来解决问题:
```python
from openpyxl.styles import PatternFill
fill = PatternFill(fill_type='solid', start_color='FF0000', end_color='FF0000')
```
这里我们直接导入PatternFill并使用fill_type替换FillType。如果你的openpyxl版本仍然过低,你可以通过升级openpyxl来解决这个问题。
阅读全文