gpt4 book ai didi

python - 如何在 python 中使用 xlsxwriter 将数据写入/更新到现有 XLSX 工作簿的单元格中

转载 作者:太空狗 更新时间:2023-10-29 17:09:21 26 4
gpt4 key购买 nike

我可以使用

写入新的 xlsx 工作簿
import xlsxwriter  
def write_column(csvlist):
workbook = xlsxwriter.Workbook("filename.xlsx",{'strings_to_numbers': True})
worksheet = workbook.add_worksheet()
row = 0
col = 0
for i in csvlist:
worksheet.write(col,row, i)
col += 1

workbook.close()

但找不到在现有工作簿中写入的方法。请帮助我使用 xlswriter 或任何替代方法编写/更新现有工作簿中的单元格。

最佳答案

引用自 xlsxwriter 模块 documentation :

This module cannot be used to modify or write to an existing Excel XLSX file.

如果您想修改现有的 xlsx 工作簿,请考虑使用 openpyxl模块。

另见:

关于python - 如何在 python 中使用 xlsxwriter 将数据写入/更新到现有 XLSX 工作簿的单元格中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18849535/

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