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

python读取excel文件

时间:2019-09-14 00:48:51      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:没有   inf   nbsp   ==   读取   height   color   获取   模块   

 

# 最近写项目需要,通过读取excel文件导入数据至数据库

 

安装模块:

pip install xlrd

 

导入模块:

import xlrd

 

拿到操作excel句柄,读取excel文件:

workbook = xlrd.open_workbook(filepath)

 

拿到sheet句柄:

(1) 通过索引获取sheet句柄(没有名称的用这个,一般我就一个sheet)

sheet = workbook.sheet_by_index(0)

 

(2) 通过sheet名获取sheet句柄

sheet = workbook.sheet_by_name(sheetname)

 

sheet指的是这个:

技术图片

 

获取第一行数据:

rows = sheet.row_values(0)

print(rows)

 

获取总行数:

print(sheet.nrows)

 

组合起来的写法:

import xlrd

def read_excel_data(filepath):
    
    workbook = xlrd.open_workbook(filepath)

    sheet = workbook.sheet_by_index(0)

    for index in range(1, sheet.nrows):

        row_value = sheet.row_values(index)

        print(row_value)


if __name__ == __main__:
read_excel_data(
test.xlsx)

 

python读取excel文件

标签:没有   inf   nbsp   ==   读取   height   color   获取   模块   

原文地址:https://www.cnblogs.com/zezhou/p/11517802.html

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