Python: csv.DictReader(csvfile), for loop
import csv csvfile = open('data/data-text.csv', 'r') for row in csv.DictReader(csvfile): print row