python3+xlrd解析Excel

lm_y發表於2017-08-05
# -*- coding: utf-8 -*-
import xlrd
def open_excel(file = 'file.xls'):#開啟要解析的Excel檔案
    try:
        data = xlrd.open_workbook(file)
        return data
    except Exception as e:
        print(e)

def excel_by_index(file = 'file.xls', colindex = 0, by_index = 0):#按表的索引讀取
    data = open_excel(file)#開啟excel檔案
    tab = data.sheets()[by_index]#選擇excel裡面的Sheet
    nrows = tab.nrows#行數
    ncols = tab.ncols#列數
    colName = tab.row_values(colindex)#第0行的值
    list = []#建立一個空列表
    for x in range(0, nrows):
        row = tab.row_values(x)
        if row:
            app = {}#建立空字典
            for y in range(0, ncols):
                app [ colName[y] ] = row[y]
            list.append(app)
    return list

def read_excel(file = 'file.xls', by_index = 0):#直接讀取excel表中的各個值
    data = open_excel(file)#開啟excel檔案
    tab = data.sheets()[by_index]#選擇excel裡面的Sheet
    nrows = tab.nrows#行數
    ncols = tab.ncols#列數
    for x in range(0, nrows):
         for y in range(0, ncols):
             value = tab.cell(x,y).value
             print(tab.cell(x, y).value)
def main():
    # print('input the path of your file:')
    # a = open_excel(r'D:\smt_ioe\untitled\analysis_excel\my.xls')
    # print(a)
    b = excel_by_index(r'D:\smt_ioe\untitled\analysis_excel\my.xls', 0, 2)
    m = []
    for i in range(b.__len__()):
        c = b[i]
        # a = c['name']
    for x in c:
        if x == 'date':
            print(x)
    print('meng')
    read_excel(r'D:\smt_ioe\untitled\analysis_excel\my.xls',2)

if __name__ == '__main__':
    main()

相關文章