On 14Sep2014 01:56, rusi <rustompm...@gmail.com> wrote:
On Sunday, September 14, 2014 2:09:51 PM UTC+5:30, Cameron Simpson wrote:

If you have a nice regular CSV file, with say 3 values per row, you can go:

   reader = csv.reader(f)
   for row in reader:
       a, b, c - row

I guess you meant:  a, b, c = row
?

Yeah :-(

Cheers,
Cameron Simpson <c...@zip.com.au>
--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to