import csv with open('TTExample.csv') as csvfile: input = csv.reader(csvfile) for row in input: print(row)