Re: [Tutor] Difficulty with csv files - line breaks

2009-11-25 Thread Tim Goddard
> Date: Tue, 24 Nov 2009 15:01:38 -0800 > From: Albert Sweigart > To: tutor@python.org > Subject: Re: [Tutor] Difficulty with csv files - line breaks > Message-ID: >        <716dd5b60911241501y57db5c62r358b1a9859a3a...@mail.gmail.com> > Content-Type: text/plain;

Re: [Tutor] Difficulty with csv files - line breaks

2009-11-24 Thread Albert Sweigart
Tim, I've checked your code and it seems to work as far as using newlines for the line terminator. The default line terminator is \r\n, which might not show up correctly in some text editors. Otherwise, try checking to see if you've specified a blank line for the line terminator. You can set it e

[Tutor] Difficulty with csv files - line breaks

2009-11-24 Thread Tim Goddard
What I'm trying to do is store a bunch of information into a .csv file. Each row will contain a date, webpage, etc of a job application. My difficulty is that it seems something I am doing is not recording the line breaks. I've read that \r\n are default in the csv module but so far I can not se