ValueError: Append mode is not supported with xlsxwriter

在尝试使用pandas的ExcelWriter以追加模式(a)写入Excel文件时,遇到ValueError,提示xlsxwriter不支持追加模式。解决方案是将ExcelWriter的引擎改为openpyxl,这样就可以在已有文件上追加数据。

项目场景:

with pd.ExcelWriter('aaa.xlsx', mode='a') as writer:
    data.to_excel(writer, sheet_name=developerName + '.' + fileDirectory, index=False, header=False, startrow=1, startcol=1)

问题描述

Traceback (most recent call last):
  File "D:\Java\python\com\cll\coverageHtml\Coverage.py", line 356, in buttonFuntion
    with pd.ExcelWriter(excelFileDirectoryArr[excelInt], mode='a') as writer:
  File "C:\Users\30270\AppData\Local\Programs\Python\Python39\lib\site-packages\pandas\io\excel\_xlsxwriter.py", line 203, in __init__
    raise ValueError("Append mode is not supported with xlsxwriter!")
ValueError: Append mode is not supported with xlsxwriter!

原因分析:



解决方案:

需要将引擎指定为“openpyxl”, 追加engine="openpyxl"

with pd.ExcelWriter(excelFileDirectoryArr[excelInt], engine="openpyxl", mode='a') as writer:
    data.to_excel(writer, sheet_name=developerName + '.' + fileDirectory, index=False, header=False, startrow=1, startcol=1)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值