您好,登錄后才能下訂單哦!
這篇文章主要介紹了怎么使用python3+xlrd解析Excel的實例,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
Python是一種跨平臺的、具有解釋性、編譯性、互動性和面向對象的腳本語言,其最初的設計是用于編寫自動化腳本,隨著版本的不斷更新和新功能的添加,常用于用于開發獨立的項目和大型項目。
實例如下所示:
# -*- 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()
感謝你能夠認真閱讀完這篇文章,希望小編分享的“怎么使用python3+xlrd解析Excel的實例”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。