gpt4 book ai didi

python - 如何使用 Pandas 在单元格中保存 *.xlsx 长 URL

转载 作者:IT老高 更新时间:2023-10-28 20:37:57 25 4
gpt4 key购买 nike

例如,我用 2 列(id 和 URL)将 excel 文件读入 DataFrame。输入文件中的 URL 类似于文本(没有超链接):

input_f = pd.read_excel("input.xlsx")

观察这个 DataFrame 中的内容 - 一切都已成功读取,所有 URL 在 input_f 中都正常。之后当我不想将此文件保存到_excel时

input_f.to_excel("output.xlsx", index=False)

我收到警告。

Path\worksheet.py:836: UserWarning: Ignoring URL 'http:// here long URL' with link or location/anchor > 255 characters since it exceeds Excel's limit for URLS force_unicode(url))

在 output.xlsx 中,长 URL 的单元格是空的,并且 URL 变成了超链接。

如何解决这个问题?

最佳答案

您可以创建一个 ExcelWriter 对象,并选择不将字符串转换为 url:

writer = pandas.ExcelWriter(r'file.xlsx', engine='xlsxwriter',options={'strings_to_urls': False})
df.to_excel(writer)
writer.close()

关于python - 如何使用 Pandas 在单元格中保存 *.xlsx 长 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35440528/

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