gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-05 09:18:29 27 4
gpt4 key购买 nike

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'

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

最佳答案

来自write-only mode docs :

In a write-only workbook, rows can only be added with append(). It is not possible to write (or read) cells at arbitrary locations with cell() or iter_rows().

关于python - 为什么 'WriteOnlyWorksheet' 对象没有属性 'cell' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44313365/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com