python读写xlsx

Posted ???

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python读写xlsx相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

Python读写Excel文件

python读写xlsx

python与execl的读写

python针对excel的读写操作-----openpyxl

python学习--读写Excel文件

Python使用openpyxl读写excel文件