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

Thank you.
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to