python读取excel文件

Posted zezhou

tags:

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

 

# 最近写项目需要,通过读取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文件的主要内容,如果未能解决你的问题,请参考以下文章

python读取excel文件

python 读取Excel文件

Python 读取 excel 文件

python读取和生成excel文件

用python读取带密码的excel文件中的数据

Selenium2+Python3.6实战:读取Excel文件