gpt4 book ai didi

Python 写入 (xlwt) 到现有 Excel 工作表、删除图表和格式

转载 作者:太空宇宙 更新时间:2023-11-03 16:05:36 25 4
gpt4 key购买 nike

我使用 python 来自动执行一些任务并最终写入现有的电子表格。我正在使用 xlwt、xlrd 和 xlutils 模块。

所以我设置它的方法是打开文件,制作副本,写入它,然后将其保存回同一个文件。当我执行最后一步时,所有 Excel 格式(例如注释和图表)都会被删除。有办法解决这个问题吗?我认为这与 Excel 对象有关。

谢谢

示例代码

import xlwt
import os
import xlrd, xlutils
from xlrd import open_workbook
from xlutils.copy import copy

style1 = xlwt.easyxf('font: name Calibri, color-index black, bold off; alignment : horizontal center', num_format_str ='###0')

script_dir = os.path.dirname('_file_')
Scn1 = os.path.join(script_dir, "\sample\Outlet.OUT")

WSM_1V = []
infile = open (Scn1, "r")
for line in infile.readlines():
WSM_1V.append(line [-10:-1])
infile.close()

Existing_xls = xlrd.open_workbook(r'\test\test2.xls', formatting_info=True, on_demand=True)
wb = xlutils.copy.copy(Existing_xls)
ws = wb.get_sheet(10)

for i,e in enumerate(WSM_1V,1):
ws.write (i,0, float(e),style1)


wb.save('test2.xls')

最佳答案

使用这些包,无法避免丢失注释和图表以及许多其他工作簿功能。 xlrd 包根本不读取它们,而 xlwt 包根本不写入它们。 xlutils 只是其他两个包之间的桥梁;它无法读取 xlrd 无法读取的任何内容,也无法写入 xlwt 无法写入的任何内容。

为了实现您想要实现的目标,您最好的选择可能是自动化正在运行的 Excel 实例;执行此操作的最佳 Python 包是 xlwings ,适用于 Windows 或 Mac。

关于Python 写入 (xlwt) 到现有 Excel 工作表、删除图表和格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39838220/

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