python讀取excle表格_xlrd模組

來源:互聯網
上載者:User

標籤:列印   檔案   int   模組   class   xls   pre   資料   lis   


python讀取excle檔案需要安裝xlrd
 1 #python讀取excle檔案需要安裝xlrd 2 import xlrd 3 #開啟一個excle檔案 4 file=xlrd.open_workbook(‘E:\learning\list.xlsx‘) 5 #開啟excle檔案中的一個表單 6 a=file.sheets()[1] 7     # table = data.sheet_by_index(0) #通過索引順序擷取 8     # table = data.sheet_by_name(u‘Sheet1‘)#通過名稱擷取 9 #列印指定行    a.row_values(行號)10 print(a.row_values(0))11 #列印指定列12 print(a.col_values(1))13 #擷取行數和列數14 nrows=a.nrows15 print(nrows)16 ncols=a.ncols17 print(ncols)18 19 #迴圈行資料20 for i in range(nrows):21     print(a.row_values(i))22 23 24 #儲存格25 cell_A1=a.cell(0,0).value26 print(cell_A1)27 28 cell_A01=a.row(0)[0].value29 print(cell_A1)30 cell_A02=a.col(0)[1].value31 print(cell_A02)

 

python讀取excle表格_xlrd模組

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.