On Aug 20, 9:10 am, MRAB wrote:
> JonathanB wrote:
> > On Aug 13, 3:52 pm, alex23 wrote:
> >> On Aug 13, 4:22 pm, JonathanB wrote:
>
> >>> writer = csv.writer(open(output, 'w'), dialect='excel')
> >> I think - not able to test atm - that if you open the file in 'wb'
> >> mode instead it
JonathanB wrote:
On Aug 13, 3:52 pm, alex23 wrote:
On Aug 13, 4:22 pm, JonathanB wrote:
writer = csv.writer(open(output, 'w'), dialect='excel')
I think - not able to test atm - that if you open the file in 'wb'
mode instead it should be fine.
changed that to
writer = csv.writer(op
On Aug 13, 3:52 pm, alex23 wrote:
> On Aug 13, 4:22 pm, JonathanB wrote:
>
> > writer = csv.writer(open(output, 'w'), dialect='excel')
>
> I think - not able to test atm - that if you open the file in 'wb'
> mode instead it should be fine.
changed that to
writer = csv.writer(open(output,
On Aug 13, 4:22 pm, JonathanB wrote:
> writer = csv.writer(open(output, 'w'), dialect='excel')
I think - not able to test atm - that if you open the file in 'wb'
mode instead it should be fine.
--
http://mail.python.org/mailman/listinfo/python-list
The subject basically says it all, here's the code that's producing
the csv file:
def write2CSV(self,output):
writer = csv.writer(open(output, 'w'), dialect='excel')
writer.writerow(['Name','Description','Due Date','Subject',
'Grade','Maximum Grade', se