Nicer way of strip and replace?
Paul Rubin
http
Tue Oct 11 19:29:28 EDT 2005
More information about the Python-list mailing list
Tue Oct 11 19:29:28 EDT 2005
- Previous message (by thread): Nicer way of strip and replace?
- Next message (by thread): Newbie needs help. Setting PYTHONDOCS to read HTML.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Markus Rosenstihl <mrosenstihl at macnews.de> 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.
- Previous message (by thread): Nicer way of strip and replace?
- Next message (by thread): Newbie needs help. Setting PYTHONDOCS to read HTML.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list