首頁 > 後端開發 > Python教學 > python怎麼讀取excel中的數值

python怎麼讀取excel中的數值

(*-*)浩
發布: 2019-07-11 13:43:56
原創
7349 人瀏覽過

最近測試過程中需要用到python讀取excel用例數據,於是去了解並學習了下xlrd庫,這裡只記錄使用過程中讀取excel數據相關操作。

python怎麼讀取excel中的數值

安裝xlrd庫(推薦學習:Python影片教學

可以下載xlrd庫包到本機安裝,也可以透過pip指令安裝,這裡我選擇pip指令:

pip install xlrd
登入後複製

使用xlrd讀取excel資料

具體詳細的操作可以參考xlrd庫操作說明文檔,以下是兩種讀取excel資料的方法:

根據Excel中sheet名稱讀取資料:  

 import xlrd
def readExcelDataByName(fileName, sheetName):
    table = None
    errorMsg = None
    try:
        data = xlrd.open_workbook(fileName)
        table = data.sheet_by_name(sheetName)
    except Exception, msg:
        errorMsg = msg  
    return table, errorMsg
登入後複製

根據Excel中sheet的序號取得:

 import xlrd
def readExcelDataByIndex(fileName, sheetIndex):
    table = None
    errorMsg = ""
    try:
        data = xlrd.open_workbook(fileName)
        table = data.sheet_by_index(sheetIndex)
    except Exception, msg:
        errorMsg = msg
    return table, errorMsg
登入後複製

更多Python相關技術文章,請造訪Python教學欄位進行學習!

以上是python怎麼讀取excel中的數值的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板