On 2013-12-17, Igor Korot wrote: > Hi, ALL, > Is there a better way to do that: > > def Read_CSV_File(filename): > file = open(filename, "r") > reader = csv.DictReader(file) > line = 1 > for row in reader: > if line < 6: > reader.next() > line++ > # process the CSV
#v+
def Read_CSV_File(filename):
with open(filename) as f:
for line,row in enumerate(csv.DictReader(f)):
if line >= 6:
# process the CSV
#v-
Bernd
--
no time toulouse
--
https://mail.python.org/mailman/listinfo/python-list
