python读写excle
Posted 给明天的自己
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python读写excle相关的知识,希望对你有一定的参考价值。
我们可以通过python的一些模块进行excle中用例的读取,或者导出数据到excle
目录
1、安装模块
2、读excle
3、写excle
1、安装模块
python中有第三方模块可以进行excle的读取,他们分别是xlrd(读)和xlwt(写)
pip install xlrd
pip install xlwt
2、读excle
#coding:utf-8
#------1、读excle的操作-----
import xlrd #导入读excle的模块
data =xlrd.open_workbook("C:UsersAdministratorDesktopsheet1.xls") #打开excle
table=data.sheet_by_name(u"Sheet1") #获取到第一个sheet
nrows=table.nrows #获取行数
for i in range(nrows):
print table.row_values(i) # values=table.row_values(2) #获取第三行的值
3、写excle
#coding:utf-8
#-----2、写excle的操作------
import xlwt #导入写excel的模块
xls01=xlwt.Workbook() #创建了一个excle
sheet1=xls01.add_sheet(‘sheetwrite‘) #为xls添加第一个sheet
sheet1.write(0,1,‘yes‘) #在第一个sheet里第一行、第二列添加字符串yes
xls01.save(‘D:me.xls‘) #将文档保存在d盘下,并命名为me.xls
以上是关于python读写excle的主要内容,如果未能解决你的问题,请参考以下文章