pandas 如何使用Python将Excel电子表格转换为HTML?

sqserrrh  于 2023-05-05  发布在  Python
关注(0)|答案(1)|浏览(151)

我有几个.xlsx Excel电子表格,我想通过使用Python脚本转换为HTML Web格式。我该怎么做?

fjaof16o

fjaof16o1#

你可以在Python中使用Pandas来实现这一点。通过从终端/命令行运行pip install pandas来安装Pandas。
然后运行以下代码,从 spreadsheet.xlsx 文件创建 spreadsheet.html 文件:

import pandas as pd
df = pd.read_excel('spreadsheet.xlsx')
with open('spreadsheet.html', 'w') as fo:
    fo.write(df.to_html())

相关问题