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

python--读取Excel内容

时间:2020-01-18 01:22:47      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:数据   --   coding   odi   获取   err   pytho   open   class   

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内容

标签:数据   --   coding   odi   获取   err   pytho   open   class   

原文地址:https://www.cnblogs.com/lutt/p/12207857.html

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