Is anyone happy with csv module?

Marc 'BlackJack' Rintsch bj_666 at gmx.net
Wed Dec 12 03:23:45 EST 2007


On Tue, 11 Dec 2007 20:08:21 -0300, Gabriel Genellina wrote:

>      data = [row for row in csv.reader(......)]

A bit shorter::

       data = list(csv.reader(......))

Ciao,
	Marc 'BlackJack' Rintsch



More information about the Python-list mailing list