Re: pyExcelerator: writing multiple rows

2008-01-19 Thread [EMAIL PROTECTED]
On Jan 19, 7:46�am, [EMAIL PROTECTED] wrote: > Hi all, > > I was just curious if there was a �built-in or a more efficient way to > do take multiple rows of information and write them into excel using > pyExcelerator. �This is how I resolved the problem: > > from pyExcelerator import * > > data = [

pyExcelerator: writing multiple rows

2008-01-19 Thread patrick . waldo
Hi all, I was just curious if there was a built-in or a more efficient way to do take multiple rows of information and write them into excel using pyExcelerator. This is how I resolved the problem: from pyExcelerator import * data = [[1,2,3],[4,5,'a'],['','s'],[6,7,'g']] wb=pyExcelerator.Work