Ted> Thanks. Is there any way to make this work before actually reading Ted> in a row of data? In version 2.5, I need to first do a rdr.next() Ted> before rdr.fieldnames gives me anything.
If you know the csv file contains column headers this should work: f = open("f.csv", "rb") names = csv.reader(f).next() rdr = csv.DictReader(f, fieldnames=names) Skip -- http://mail.python.org/mailman/listinfo/python-list