还是报错 merged_sheet[cell.coordinate]._style = cell._style.copy() # 复制格式信息 AttributeError: 'StyleArray' object has no attribute 'copy'
时间: 2023-10-30 21:22:26 浏览: 156
CCC-Digital-Key-R3_0.2.3_Merged_Redline.pdf.zip
5星 · 资源好评率100%
很抱歉,我的回答有误。在 openpyxl 3.x 版本中,`_style` 属性被移除了。正确的做法是使用 `cell.style` 属性来复制单元格的格式信息,而不是使用 `_style`。
以下是修改后的代码:
```python
import openpyxl
# 读取所有要合并的表格,将它们存储在一个列表中
workbooks = ['workbook1.xlsx', 'workbook2.xlsx', 'workbook3.xlsx']
sheets = []
for workbook in workbooks:
wb = openpyxl.load_workbook(workbook)
for sheet_name in wb.sheetnames:
sheet = wb[sheet_name]
sheets.append(sheet)
# 创建一个新的工作簿,并复制第一个表格到其中
merged_workbook = openpyxl.Workbook()
merged_sheet = merged_workbook.active
merged_sheet.title = sheets[0].title
for row in sheets[0].rows:
for cell in row:
merged_sheet[cell.coordinate].value = cell.value
merged_sheet[cell.coordinate].style = cell.style.copy() # 复制格式信息
# 将其他表格的内容复制到新工作簿中
for sheet in sheets[1:]:
new_sheet = merged_workbook.create_sheet(title=sheet.title)
for row in sheet.rows:
for cell in row:
new_sheet[cell.coordinate].value = cell.value
new_sheet[cell.coordinate].style = cell.style.copy() # 复制格式信息
# 保存新工作簿
merged_workbook.save('merged_workbook.xlsx')
```
在这个版本的代码中,我们使用了 `cell.style.copy()` 方法来复制单元格的格式信息,而不是使用 `_style` 属性。这样可以正确地复制单元格的填充颜色等格式。
阅读全文