码迷,mamicode.com
首页 > 编程语言 > 详细

python生成html表格

时间:2018-08-22 21:49:06      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:ott   port   frame   detail   col   方便   title   imp   white   

最近做一个小工具,需要将统计数据生成html表格。在网上搜罗一圈后发现用pandas生成表格非常好用。代码如下:

 1 import pandas as pd
 2 def convertToHtml(result,title):#将数据转换为html的table#result是list[list1,list2]这样的结构#title是list结构;和result一一对应。titleList[0]对应resultList[0]这样的一条数据对应html表格中的一列
 3     d = {}
 4     index = 0for t in title:
 5         d[t]=result[index]
 6         index = index+1
 7     df = pd.DataFrame(d)
 8     df = df[title]
 9     h = df.to_html(index=False)
10     return h
11 
12  if __name__ == __main__:
13     result = [[u2016-08-25,u2016-08-26,u2016-08-27],[u张三,u李四,u王二]]
14     title = [u日期,u姓名]
15     print(convertToHtml(result,title))

 

运行结果放入html中显示如下: 
技术分享图片

DataFrame有很多初始化的方式;不仅仅是这种字典的方式;后面专门写一篇介绍。另外说一句pandas用来处理数据真的太方便了,有兴趣的朋友可以好好研究一下~

 





python生成html表格

标签:ott   port   frame   detail   col   方便   title   imp   white   

原文地址:https://www.cnblogs.com/jins-note/p/9520303.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!