gpt4 book ai didi

python xlutils : formatting_info=True not yet implemented

转载 作者:太空狗 更新时间:2023-10-29 17:03:02 25 4
gpt4 key购买 nike

我有简单的代码可以使用 xlutils、xlrd、xlwt(从 python-excel.org 下载的新库)复制文件而不丢失格式。我收到如下错误:

from xlwt.Workbook import *
from xlwt.Style import *
from xlrd import open_workbook
from xlutils.copy import copy
import xlrd

style = XFStyle()
rb = open_workbook('file_master.xlsx', formatting_info=True)
wb = copy(rb.get_sheet(0))

new_book = Workbook()
w_sheet = wb.get_sheet(0)
w_sheet.write(6,6)

wb.save('new_file_master.xls')

错误:

 raise NotImplementedError("formatting_info=True not yet implemented")
NotImplementedError: formatting_info=True not yet implemented

能否请您帮我解决这个问题,或者让它发挥作用?

最佳答案

根据 this thread旗帜

formatting_info=True

仅适用于 xls 文件,但不适用于 xlsx(版本 xlrd-0.8.0)。

作为解决方法,您可以使用 Excel 或 OpenOffice 将工作簿转换为 xls。

似乎可以使用 Unoconv 从 xlsx 到 xls 的命令行转换在 Linux、Windows 和 MacOSX 上。

关于 python xlutils : formatting_info=True not yet implemented,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13892307/

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