On Fri, Oct 31, 2008 at 9:32 AM, Serdar Tumgoren <[EMAIL PROTECTED]> wrote:
>> Below is my code. Can someone tell me how I'm botching the use of the
>> "writerows" method? Also, on a separate note, is it possible and necessary
>> to close the input and output files when using csv module? I keep getting a
>> "module has no close method" error when I try to close the files...

Use writerow() not writerows() - you are writing a single row.

To close the files you have to keep a reference to the underlying
file. See my original example.

Kent
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to