xlrd模組
使用步驟及方法:
開啟檔案:
import xlrd
excel=xlrd.open_workbook("E:/test.xlsx")
獲取sheet:
table = excel.sheets()[0] #透過索引獲取
table = excel.sheet_by_index(0) #透過索引獲取
table = excel.sheet_by_name("Sheet1") #透過表名獲取
備註:以下方法的操作都要在sheet基礎上使用
獲取行數和列數:
rows=table.nrows #獲取行數
cols=table.ncols #獲取列數
獲取單元格值:
Data=table.cell(row,col).value #獲取表格內容,是從第一行第一列是從0開始的,注意不要丟掉 .value
獲取整行或整列內容
Row_values=table.row_values(i) #獲取整行內容
Col_values=table.col_values(i) #獲取整列內容
xlrd模組
使用步驟及方法:
開啟檔案:
import xlrd
excel=xlrd.open_workbook("E:/test.xlsx")
獲取sheet:
table = excel.sheets()[0] #透過索引獲取
table = excel.sheet_by_index(0) #透過索引獲取
table = excel.sheet_by_name("Sheet1") #透過表名獲取
備註:以下方法的操作都要在sheet基礎上使用
獲取行數和列數:
rows=table.nrows #獲取行數
cols=table.ncols #獲取列數
獲取單元格值:
Data=table.cell(row,col).value #獲取表格內容,是從第一行第一列是從0開始的,注意不要丟掉 .value
獲取整行或整列內容
Row_values=table.row_values(i) #獲取整行內容
Col_values=table.col_values(i) #獲取整列內容