赞
踩
python Excel数据表格转为HTML网页数据表格
首先,准备一个excel。以以下代码为例,在当前目录下生成一个Excel文件:test.xslx。
import pandas as pd
df = pd.DataFrame(index=['a', 'b', 'c', 'd', 'e', 'f'])
df['num1'] = [1, 2, 3, 4, 5, 6]
df['num2'] = [11, 22, 33, 44, 55, 66]
print(df)
df.to_excel('test.xlsx')
生成的这个Excel如图所示:
读取这个excel文件,并转变为html文件:
import pandas as pd
df = pd.read_excel('test.xlsx')
df.to_html('mrbooks.html', header=True, index=False)
如图生成了一个html文件,
经过浏览器渲染后展示如下:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。