您好,登錄后才能下訂單哦!
python如何讀取excel中的數值?這個問題可能是我們日常學習或工作經常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家帶來的參考內容,讓我們一起來看看吧!
最近測試過程中需要用到python讀取excel用例數據,于是去了解和學習了下xlrd庫,這里只記錄使用過程中讀取excel數據相關操作。
安裝xlrd庫
可以下載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如何讀取excel中的數值大概了解了嗎?希望文章內容對大家有所幫助。如果想了解更多相關文章內容,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。