1. 程式人生 > >python讀寫xlsx

python讀寫xlsx

超過 string span -c asm roc bash repr book

1使用openpyxl庫讀寫excel

    xlrd和xlwt處理的是xls文件,單個sheet最大行數是65535,如果有更大需要的,建議使用openpyxl函數,最大行數達到1048576。
    如果數據量超過65535就會遇到:ValueError: row index was 65536, not allowed by .xls format

    1、打開excel

      技術分享圖片

    2、獲取打開的excel的sheet內容

      技術分享圖片

    3、獲取sheet的最大行數和列數

      技術分享圖片

    4、獲取某個單元格的值

      print(ws.cell(1,1).value)

    5、打開將寫的表並添加sheet

      技術分享圖片

    6、保存

      技術分享圖片

一個示例如下

技術分享圖片

技術分享圖片

2、用xlrd和xlwt讀寫excel

    首先下載安裝xlrd和xlwt這兩個庫。

  1、打開excel

    readbook = xlrd.open_workbook(r‘\test\canying.xlsx‘)

  2、獲取讀入的文件的sheet

    sheet = readbook.sheet_by_index(1)#索引的方式,從0開始
    sheet = readbook.sheet_by_name(‘sheet2‘)#名字的方式

  3、獲取sheet的最大行數和列數

    nrows = sheet.nrows#行
    ncols = sheet.ncols#列

  4、獲取某個單元格的值

    lng = table.cell(i,3).value#獲取i行3列的表格值
    lat = table.cell(i,4).value#獲取i行4列的表格值

  5、打開將寫的表並添加sheet

    writebook = xlwt.Workbook()#打開一個excel
    sheet = writebook.add_sheet(‘test‘)#在打開的excel中添加一個sheet

  6、將數據寫入excel

     sheet.write(i,0,result[0])#寫入excel,i行0列
     sheet.write(i,1,result[1])

  7、保存

     writebook.save(‘answer.xls‘)#一定要記得保存

過程和方法一類似

python讀寫xlsx