讀取excel步驟:
匯入xlrd模組
開啟excel
讀取需要的sheet頁(通過sheet頁編號或者sheet名字)
獲取該sheet頁每行每個字段結果
import xlrd
book = xlrd.open_workbook(
'students.xls'
)#開啟excel
sheet = book.sheet_by_index(0)
#讀取第n個sheet頁,預設從0開始
sheet = book.sheet_by_name(
'sheet1'
)#讀取名為『sheet1』的sheet頁
print
(book.sheets())
#所有的sheet頁,返回的是乙個list,list裡面就是每個sheet物件
for s in book.sheets():
print
(s.row_values(2)
)#獲取book下所有sheet頁的第2行元素內容,s是遍歷的book下所有sheet頁
print
(sheet.cell(0,
0).value)
#獲取某乙個單元格的value,sheet.cell(0,0)--第0行第0列
print
(sheet.row_values(0)
)#獲取第0行,整行value
print
(sheet.row_values(1)
)#獲取第1行,整行value
print
(sheet.col_values(0)
)#獲取第0列,整列value
print
(sheet.col_values(1)
)#獲取第1列,整列value
print
(sheet.nrows)
#獲取這個sheet有多少行
print
(sheet.ncols)
#獲取這個sheet多少列
Qt 操作Excel 讀取Excel 資料
qt 操作excel 有兩種方式 一種使用 qt qaxobject操作excel,這種方式執行的主機需要安裝microsoft excel,qt 利用qaxobject com介面操作microsoft excel 軟體實現excel 讀寫 第二種就是用第三的庫實現excel 讀寫。常用的庫和使用...
C 讀取Excel,匯出Excel
c 讀取excel 方法一 oledb方式 1 定義連線字串 string strconn provider microsoft.jet.oledb.4.0 data source exce檔案路徑及名字 extended properties excel 8.0 hdr false imex 1 ...
C 讀取Excel,匯出Excel
c 讀取excel 方法一 oledb方式 1 定義連線字串 string strconn provider microsoft.jet.oledb.4.0 data source exce檔案路徑及名字 extended properties excel 8.0 hdr false imex 1 ...