python--读取Excel内容

Posted 小陆同学

tags:

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

import xlrd

def extract(inpath):
    data = xlrd.open_workbook(inpath, encoding_override=utf-8)
    table = data.sheets()[0]  # 选定表
    nrows = table.nrows  # 获取行号
    ncols = table.ncols  # 获取列号

    for i in range(1, nrows):  # 第0行为表头
        alldata = table.row_values(i)  # 循环输出excel表中每一行,即所有数据
        result = alldata[6]  # 取出表中第7列数据
        print(result)

inpath = ./test.xls  # excel文件所在路径
extract(inpath)

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

python读取excel某一单元格内容然后显示在网页上?

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

python读取excel莫个页签sheets()行数,并且获取里边的内容。

python读取excel的内容

python--读取Excel内容

求助:Python接口自动化-如何遍历读取excel表格