时间:2021-05-22
本文实例为大家分享了python操作EXCEL的实例源码,供大家参考,具体内容如下
读EXCEL的操作:把excel的数据存储为字典类型
#coding=utf8 #导入读excel的操作库 import xlrd class GenExceptData(object): def __init__(self): try: self.dataDic={} #打开工作薄 self.wkbook= xlrd.open_workbook("Requirement.xls") #获取工作表“requirement” self.dataSheet=self.wkbook.sheet_by_name("requirement") #把数据按 按照相应格式写入excel表中 self.readDataToDicl() #保存文件 except Exception,e: print "Read Excel error:",e def readDataToDicl(self): try: nrows = self.dataSheet.nrows ncols = self.dataSheet.ncols print ncols ,nrows try: for rowNum in range(1,nrows): #把数据的当前行的元素与上一行元素作比较 #如果不相等执行if语句 try: singleJson={} propertyName=self.dataSheet.cell(rowNum,3).value propertyValue=self.dataSheet.cell(rowNum,4).value if self.dataSheet.cell(rowNum,0).value and self.dataSheet.cell(rowNum,2).value: mdEvent=self.dataSheet.cell(rowNum,0).value singleJson["serviceId"]=self.dataSheet.cell(rowNum,2).value singleJson[propertyName]=propertyValue print singleJson self.dataDic[mdEvent]=singleJson singleJson.clear() except Exception,e: print "Get Data Error:",e except Exception,e: print "Reading Data Error:",e except Exception,e: print "Reading Data TO Dic Error:",e def test(): GenExceptData() if __name__=="__main__": test()写EXCEL的操作:把csv文件的数据按照需求写入到excel文件中
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了python实现查找excel里某一列重复数据并且剔除后打印的方法。分享给大家供大家参考。具体分析如下:在python里面excel的简单读写操作
python读写excel文件有很多种方法:用xlrd和xlwt进行excel读写用openpyxl进行excel读写用pandas进行excel读写本文使用x
在前面的文章中介绍了如何用Python读写Excel数据,今天再介绍一下如何用Python修改Excel数据。需要用到xlutils模块。下载地址为https:
学习Python的过程中,我们会遇到Excel的读写问题。这时,我们可以使用xlwt模块将数据写入Excel表格中,使用xlrd模块从Excel中读取数据。下面
本文实例讲述了Python实现的Excel文件读写类。分享给大家供大家参考。具体如下:#coding=utf-8########################