python读取excel

Posted 逆鳞

tags:

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

 1 import xlrd
 2 book = xlrd.open_workbook(app_student.xls)
 3 sheet = book.sheet_by_index(0)
 4 # sheet2 = book.sheet_by_name(‘shee1‘)
 5 # print(sheet.cell(0,0).value) #指定sheet页里面行和lie获取数据
 6 # print(sheet.cell(1,0).value) #指定sheet页里面行和lie获取数据
 7 # print(sheet.row_values(0)) #这个获取到第几行的内容
 8 # print(sheet.row_values(1)) #这个获取到第几行的内容
 9 # print(sheet.nrows) #获取到excel里面总共有多少行
10 for i in range(sheet.nrows):  #循环获取到每行数据
11     print(sheet.row_values(i))
12 #print(sheet.ncols)  #总共多少列
13 #print(sheet.col_values(0)) #取第几列的数据

 

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

python怎么读取txt 格式excel文件

python读取xlsx python读取excel数据

Python开发Excel的操作之——读取

Python读取Excel

python--读取excel通过django框架入库mysql(完整代码)

python读取excel数据转为json格式