当前位置:   article > 正文

python读取excel,转换为list_python pandas 读excel 读成list

python pandas 读excel 读成list
import pandas as pd
import numpy as np
    def readexcel(self):
        data = pd.read_excel('xxx.xlsx')
        # print(type(data))
        train_data = np.array(data)  # np.ndarray()
        excel_list = train_data.tolist()  # list
        print(excel_list)
        content = ''
        a = '<table>'
        for i in excel_list:
            content+="<tr><td>"+i[0]+"</td><td>"+i[1]+"</td><td>"+i[2]+"</td></tr>"
        print(content)
        content = a+content+"</table>"
        return content
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

pandas读取excel文件,将DataFrame数据转为list,最后返回拼接好的html字符串

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/209735
推荐阅读
相关标签
  

闽ICP备14008679号