How do I skip a line of records in a CSV when using a DictReader?
Code:
import csv reader = csv.DictReader(open(\'test2.csv\')) # Skip first line rea
Since Python 2.6 you should use next(foo) instead of foo.next().