微信关注,获取更多

Python将excel文件转化为html文件

import pandas as pd
import codecs

pd.set_option('display.width', 1000)
pd.set_option('colheader_justify', 'center')
xd = pd.ExcelFile('table_2018.xlsx')
df = xd.parse()

pd.set_option('colheader_justify', 'center')

#设置html文件格式
html_string = '''
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<link rel="stylesheet" type="text/css" href="df_style.css"/>
<body>
{table}
</body>
</html>.
'''
with open('table_2018.html', encoding='utf-8', mode='w') as f:
f.write(html_string.format(table=df.to_html()))

未经允许不得转载:百花谷博客 » Python将excel文件转化为html文件

评论

2+4=

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏