python 讀取excel可分為以下幾個步驟:先安裝excel庫xlrd,然後取得excel檔案位置並讀取,最後讀取sheet和指定的rows和cols內容
今天將要介紹的是如何透過Python語言來讀取excel文件,具有一定的參考作用,希望對大家有所幫助。
【推薦課程:#Python教學##】
Python語言來讀取excel文件,分為以下幾個操作步驟:(1)首先安裝python官方Excel庫-->xlrd(2)取得Excel檔案位置並讀取(3)讀取sheet(4)讀取指定rows和cols內容範例:
# -*- coding: utf-8 -*- import xlrd from datetime import date,datetime def read_excel(): #文件位置 ExcelFile=xlrd.open_workbook(r'C:\Users\Administrator\Desktop\TestData.xlsx') #获取目标EXCEL文件sheet名 print ExcelFile.sheet_names() #------------------------------------ #若有多个sheet,则需要指定读取目标sheet例如读取sheet2 #sheet2_name=ExcelFile.sheet_names()[1] #------------------------------------ #获取sheet内容【1.根据sheet索引2.根据sheet名称】 #sheet=ExcelFile.sheet_by_index(1) sheet=ExcelFile.sheet_by_name('TestCase002') #打印sheet的名称,行数,列数 print sheet.name,sheet.nrows,sheet.ncols #获取整行或者整列的值 rows=sheet.row_values(2)#第三行内容 cols=sheet.col_values(1)#第二列内容 print cols,rows #获取单元格内容 print sheet.cell(1,0).value.encode('utf-8') print sheet.cell_value(1,0).encode('utf-8') print sheet.row(1)[0].value.encode('utf-8') #打印单元格内容格式 print sheet.cell(1,0).ctype if__name__ =='__main__': read_excel()總結:以上就是這篇文章的全部內容了,希望對大家有幫助。
以上是python如何讀取excel的詳細內容。更多資訊請關注PHP中文網其他相關文章!