python3 xlrd包的用法

1、xlrd的安裝python

pip install xlrd數組

2、xlrd使用介紹spa

  一、導入模塊excel

    import xlrd 對象

  二、打開Excel文件,實例化爲readbookblog

    readbook = xlrd.open_workbook(r'D:test.xls')索引

  三、使用技巧ip

    獲取一個工做表,獲得的是一個內存對象內存

    sheet1 = readbook.sheets()[0]                           #經過索引順序獲取pip

    sheet2 = readbook.sheet_by_index(1)                #經過索引順序獲取

    sheet3 = readbook.sheet_by_name('sheet3')      #經過名稱獲取

    sheetall = readbook.sheet_names()                    #經過名稱獲取全部sheet頁的內存對象

    

    經過上方獲取的工做表的內存對象,來獲取整行和整列的值(數組)

    sheet1.row_values(i)             #獲取整行的值

    sheet2.col_values(i)              #獲取整列的值

    

    經過上方獲取的工做表的內存對象,來獲取行數和列數

    nrows = sheet1.nrows

    ncols = sheet1.ncols

    

    循環行列表數據

    for i in range(nrows):

      print(sheet1.row_values(i))    

 

    單元格

    cell_A1 = sheet1.cell(0,0).value

    cell_C4 = sheet1.cell(2,3).value

 

    使用行列索引

    cell_A1 = sheet1.row(0)[0].value

    cell_A2 = sheet1.col(1)[0].value

 

python讀取excel 數字會變小數解決

相關文章
相關標籤/搜索