gpt4 book ai didi

excel - 将工作表添加到现有 Excel 工作表而不删除其他工作表

转载 作者:行者123 更新时间:2023-12-02 13:45:16 25 4
gpt4 key购买 nike

我正在尝试向 Excel 文件添加一个工作表:ex.xls,每当我这样做时,它都会删除所有以前制作的工作表。

如何向此 Excel 文件添加一个工作表而不删除其他工作表?

这是我创建工作表的代码:

import xlwt
import xlrd

wb = Workbook()
Sheet1 = wb.add_sheet('Sheet1')
wb.save('ex.xls')

最佳答案

我相信这是做你想做的事情的唯一方法:

import xlrd, xlwt
from xlutils.copy import copy as xl_copy

# open existing workbook
rb = xlrd.open_workbook('ex.xls', formatting_info=True)
# make a copy of it
wb = xl_copy(rb)
# add sheet to workbook with existing sheets
Sheet1 = wb.add_sheet('Sheet1')
wb.save('ex.xls')

关于excel - 将工作表添加到现有 Excel 工作表而不删除其他工作表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38081658/

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