python操作excel——xlrd xlwt xlutils

Posted

tags:

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

from xlutils.copy import copy
import xlrd
# import xlutils

#打开已存在的excel
rb=xlrd.open_workbook(‘D:\\1.xls‘,formatting_info=True, on_demand=True)
rs=rb.sheet_by_index(0).cell(0,0).value

#复制
wb=copy(rb)
#插入or修改数据
wb.get_sheet(0).write(1,0,‘7‘)
#保存(保存的路径,默认为python项目的路径)
wb.save(‘1.xls‘)

 参考文档: http://xlutils.readthedocs.io/en/latest/copy.html

以上是关于python操作excel——xlrd xlwt xlutils的主要内容,如果未能解决你的问题,请参考以下文章

python+xlrd+xlwt操作excel

Python操作excel之xlrd和xlwt简介

python+xlrd+xlwt操作excel

python 3.6xlwt和xlrd对excel的读写操作

python操作excel——xlrd xlwt xlutils

python-操作excel(读-xlrd模块写-xlwt模块)