Markus Rosenstihl <[EMAIL PROTECTED]> writes:
> indeed, it did it correctly by default:
> 
> read_file = csv.reader(open('2005_08_Rechnung_4963184011.dat', 'r'),
> delimiter="\t")
> for row in read_file:
>       rechnung.append(row)

Oh cool.  I think you could even say:

   rechnung = list(read_file)

instead of the for loop.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to