为什么'WriteOnlyWorksheet'对象没有属性'cell'?

时间:2017-06-01 17:05:16

标签: python cell openpyxl

import openpyxl

wb=openpyxl.Workbook("multiplication.xlsx")
wb.create_sheet()
sheet=wb.get_active_sheet()

sheet.cell(column=6, row=4).value= 5

wb.save("multiplication.xlsx")

当我尝试在单元格中写入时,我收到此错误。

Traceback (most recent call last):
  File "/Users/bjg/Desktop/excel2.py", line 8, in <module>
    sheet.cell(column=6, row=4).value= 5
AttributeError: 'WriteOnlyWorksheet' object has no attribute 'cell'

我想知道是否有人知道为什么会这样?

2 个答案:

答案 0 :(得分:1)

来自write-only mode docs

  

在只写工作簿中,行只能添加append()。使用cell()iter_rows()在任意位置写入(或读取)单元格是不可能的。

答案 1 :(得分:0)

而不是这样做:

wb=openpyxl.Workbook("multiplication.xlsx")

就去做:

wb=openpyxl.Workbook()

然后最后保存:

wb.save("multiplication.xlsx")