xlwings读取一整个excel文件xlsx的第一sheet到pandas.DataFrame的方法
2021-03-01 00:26
标签:style 读取 传说 win code false 不用 books add 为什么不用:pd.read_excel ? 因为 pd 使用 openpyxl 读取excel文件,有时候xlsx文件是由ApachIO产生的读取进去会出错,换个方式,用xlwings(基于pywin32?)。 传说会更快吗,没有测试速度,可以自行测试。 代码: xlwings读取一整个excel文件xlsx的第一sheet到pandas.DataFrame的方法 标签:style 读取 传说 win code false 不用 books add 原文地址:https://www.cnblogs.com/prefertea/p/14440678.htmlimport xlwings as xw
from pandas import Series
def xlwings_to_df(file,startline):#文件路径,数据标题开始于第几行
app = xw.App(visible=False,add_book=False)
wb = app.books.open(file)
ws = wb.sheets[0]
x,y=ws.used_range.shape
index=Series(ws.range((startline,1),(startline,y)).value)
data=ws.range((startline+1,1),(x,y)).value
return pd.DataFrame(data,columns=index)
文章标题:xlwings读取一整个excel文件xlsx的第一sheet到pandas.DataFrame的方法
文章链接:http://soscw.com/essay/58309.html