En Fri, 13 Jul 2007 02:10:17 -0300, Daniel <[EMAIL PROTECTED]> escribió:
> data = [row for row in csv.reader(open('some.csv', 'rb')) Note that every time you see [x for x in ...] with no condition, you can write list(...) instead - more clear, and faster. data = list(csv.reader(open('some.csv', 'rb'))) -- Gabriel Genellina -- http://mail.python.org/mailman/listinfo/python-list