理想情况下,我从另一个excel工作表中复制整行。因此,我的问题不是显示代码,而是从列表中的那一行开始,我现在如何将它放在另一个excel工作表中?我希望它看起来完全一样。目标:采用其中一种数据格式,并将它们放在例如空白的Excel工作表中。第1行。我希望这是快速的,因为我计划将其扩展到10,000行。
数据可采用以下任一格式:
data = [number:6842.0, xldate:41771.0, xldate:0.005555555555555556,
text:u'Hello World']
data = [6842.0, 41771.0, 0.005555555555555556, u'Hello World']
我的代码:
import xlwt
wb = xlwt.Workbook()
data = [6842.0, 41771.0, 0.005555555555555556, u'Hello World'] #either format
sheet1 = wb.add_sheet("MyData")
sheet1.write(1,0,data)
wb.save('C:\\Python27\\helloworld.xls')
这就是我从excel文件中获取数据的方式:
from xlrd import *
import xlwt
book = open_workbook(filename= 'C:\Users\ssheikh\Desktop\CopyFile.xls')
sh = book.sheet_by_index(0)
workbook = xlwt.Workbook()
sheet = workbook.add_sheet("MyData")
b = xldate.xldate_from_date_tuple((2014,5,12), 0)
c = xldate.xldate_from_date_tuple((2014,5,13), 0)
mylist = []
listc = []
listd = []
for i in xrange(0,sh.nrows):
if sh.cell_value(rowx=i, colx =1) == b:
mylist.append(i)
listd.append(sh.row_values(i))
print 'the number', b ,'was found in row=', i, 'and column =0'
if sh.cell_value(rowx=i,colx =1) == c:
listc.append(i)
listd.append(sh.row(i))
#mylist[0] #upper limit of my rows
#listc[-1] #lower limit of my rows
listd # this has all of my rows that i want to put in a new excel file
答案 0 :(得分:3)
我在 xlwt 中看不到任何write_row
方法,就像 xlrd 中有row_values
一样。如果需要,只有sheet.write
的工作表对象或write_rich_text
。
for row_index, row in enumerate(listd):
for col_index, cell_value in enumerate(row):
sheet.write(row_index, col_index, cell_value)
workbook.save("myData.xls")
如果有特殊样式,您可以使用style
的可选write
参数。