python读取excel指定列数据并写入到新的excel方法

时间:2021-05-22

如下所示:

#encoding=utf-8import xlrdfrom xlwt import *#------------------读数据---------------------------------fileName="C:\\Users\\st\\Desktop\\test\\20170221131701.xlsx"bk=xlrd.open_workbook(fileName)shxrange=range(bk.nsheets)try: sh=bk.sheet_by_name("Sheet1")except: print "代码出错"nrows=sh.nrows #获取行数book = Workbook(encoding='utf-8')sheet = book.add_sheet('Sheet1') #创建一个sheetfor i in range(1,nrows): row_data=sh.row_values(i) #获取第i行第3列数据 #sh.cell_value(i,3) #---------写出文件到excel-------- print "-----正在写入 "+str(i)+" 行" sheet.write(i,1, label = sh.cell_value(i,3)) #向第1行第1列写入获取到的值 sheet.write(i,2, label = sh.cell_value(i,5)) #向第1行第2列写入获取到的值book.save("C:\\Users\\st\\Desktop\\test\\demo1.xls")

以上这篇python读取excel指定列数据并写入到新的excel方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章