由於最近老是用到python讀取excel檔案,所以特意記錄一下python讀取excel檔案的大體框架。
下面直接貼**了:
import xlrd
#讀取excel檔案內容(path為檔案路徑)
defread_excel
(path):
# 獲取所有sheet
workbook = xlrd.open_workbook(path)
sheet_names = workbook.sheet_names()
# 根據sheet索引或者名稱獲取sheet內容
for sheet_name in sheet_names:
isheet = workbook.sheet_by_name(sheet_name)
#獲取該sheet下的行數
nrows = isheet.nrows
#讀取每一行的內容
for i in range(nrows):
print(isheet.row_values(i))
#獲取該sheet的列數
ncols = isheet.ncols
#獲取每一列的內容
for i in range(ncols):
print(isheet.col_values(i))
python讀取excel檔案
一 安裝xlrd模組 二 使用介紹 1 匯入模組 import xlrd 2 開啟excel檔案讀取資料 data xlrd.open workbook excelfile.xls 3 使用技巧 獲取乙個工作表 table data.sheets 0 通過索引順序獲取 table data.shee...
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 檔案位置 e...
python讀取excel檔案
coding utf 8 import xlrd 路徑前加 r,讀取的檔案路徑 file path r f test.xlsx 檔案路徑的中文轉碼 file path file path.decode utf 8 獲取資料 data xlrd.open workbook file path 獲取sh...