我有几个.xlsx Excel电子表格,我想通过使用Python脚本转换为HTML Web格式。我该怎么做?
fjaof16o1#
你可以在Python中使用Pandas来实现这一点。通过从终端/命令行运行pip install pandas来安装Pandas。然后运行以下代码,从 spreadsheet.xlsx 文件创建 spreadsheet.html 文件:
pip install pandas
import pandas as pd df = pd.read_excel('spreadsheet.xlsx') with open('spreadsheet.html', 'w') as fo: fo.write(df.to_html())
1条答案
按热度按时间fjaof16o1#
你可以在Python中使用Pandas来实现这一点。通过从终端/命令行运行
pip install pandas
来安装Pandas。然后运行以下代码,从 spreadsheet.xlsx 文件创建 spreadsheet.html 文件: