如何用python读取excel

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用python读取excel相关的知识,希望对你有一定的参考价值。

import pandas as pd
pd.read_excel('文件地址')
这样就可以读取excel 了,前提是需要安装使用的包

参考技术A 这个读取有一个专门的模块的

如何用python读取excel中的文件

#导入模块
import xlrd
#读取excel文件
def read_excel():
workbook = xlrd.open_workbook(\'data.xls\')
# workbook.sheet() #获取所有工作簿的表
nameList = workbook.sheet_names()#获取所有表名
print(nameList)
tableone = workbook.sheet_by_name(nameList[0])
rows = tableone.nrows #行
cols = tableone.ncols #列
for i in range(0,rows):#遍历行
row_value = tableone.row_values(i)#行内容
print(row_value)

for i in range(0,cols):#遍历列
col_value = tableone.col_values(i)#列内容
print(col_value)

#获取具体单元格的内容,第几行,第几列(从0开始)
cell_value = tableone.cell_value(1,1)
print(cell_value)

read_excel()

以上是关于如何用python读取excel的主要内容,如果未能解决你的问题,请参考以下文章

如何用python读取excel文件

如何用python读取arcgis中shapefile文件的属性表?可以输出为excel格式吗

如何用asp读取excel文件

如何用PHPExcel读取超大excel文件

如何用python读取arcgis中shapefile文件的属性表?可以输出为excel格式吗

如何用java读取excel文件