[google-appengine] Re: csv files

2009-05-14 Thread djidjadji
Write a python script that does the following # Afile = open(Afile.csv) Alines = Afile.readlines() Afile.close() Bfile = open(Afile.csv) Blines = Bfile.readlines() Bfile.close() for lineA,lineB in zip(Alines,Blines): # convert the lines to

[google-appengine] Re: csv files

2009-05-14 Thread Nik
tnx...i am working on this task n hope ur idea cn be helpful... On May 14, 8:03 pm, djidjadji djidja...@gmail.com wrote: Write a python script that does the following # Afile = open(Afile.csv) Alines = Afile.readlines() Afile.close()