gpt4 book ai didi

Python Excel 模板读取和重写,维护公式和格式

转载 作者:太空狗 更新时间:2023-10-30 02:30:15 24 4
gpt4 key购买 nike

我遍历了整个色域,但似乎找不到我要找的东西。我在这里找到的所有线程对我来说都是死胡同。 xlrd、xlwt 和 xlutils 几乎可以满足我的需要,但是……基本思想是我需要使用 Python 将简单数据(字符串)写入 Excel 模板的特定工作表并将该模板写入新的 .xls 文件.

读入模板,将其复制到新的工作簿对象,写入新值,然后写出新的 .xls 文件都没有问题。但是,我找不到维护两者公式和格式的 Python Excel 模块。

`

our = 'template.xls'

# open up read-only template with formatting maintained
rb = open_workbook(our,formatting_info=True)
r_sheet = rb.sheet_by_index(4)

# copy this to a new workbook object
wb = copy(rb)

# 5th sheet (index = 4) is where we need to drop the data we have
w_sheet = wb.get_sheet(4)

# populate with new data!
for row_index in range(0, r_sheet.nrows):
w_sheet.write(row_index, 1, "some string that is our data")

# write it!
wb.save('new.xls')

`

在模板中阅读时,格式保持不变(对某些颜色略有改变;嗯!),但公式不是,所以“new.xls”在公式曾经存在的地方到处都是空白。

知道如何维护 格式和公式吗?

请注意,我已锁定 Python 2.7。

最佳答案

您可以为此使用 openpyxl - 它只支持 xlsx(和相关格式),而不支持 xls(旧的 Excel 格式)。

https://pypi.python.org/pypi/openpyxl/

http://openpyxl.readthedocs.org/en/latest/

https://bitbucket.org/openpyxl/openpyxl/src/2.2/doc/source/index.rst

当您打开/保存 Excel 工作表时,此包会保留公式。它也确实保留了格式,但是它有一些小问题。但是,不会保留原始 Excel 文件中的图像。

其他很酷的功能包括对条件格式、图表、迷你图等的支持。

关于Python Excel 模板读取和重写,维护公式和格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28223048/

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