python讀取xlsx檔案
阿新 • • 發佈:2018-11-13
# encoding: UTF-8 from openpyxl import load_workbook workbook = load_workbook(u'xxxxxx.xlsx') #相對路徑,找到需要開啟的檔案位置 booksheet = workbook.active #獲取當前活躍的sheet,預設是第一個sheet #如果想獲取別的sheet頁採取下面這種方式,先獲取所有sheet頁名,在通過指定那一頁。 # sheets = workbook.get_sheet_names() # 從名稱獲取sheet # booksheet = workbook.get_sheet_by_name(sheets[0])#獲取sheet頁的行資料 rows = booksheet.rows #獲取sheet頁的列資料 columns = booksheet.columns i = 0 # 迭代所有的行 for row in rows: i = i + 1 line = [col.value for col in row] cell_datetime = booksheet.cell(row=i, column=1).value #獲取第i行1列的資料 cell_data = booksheet.cell(row=i, column=2).value #獲取第i行2l列的資料 # 通過座標讀取值 # cell_11 = booksheet.cell('A1').value # cell_11 = booksheet.cell(row=1, column=1).value # print cell_11