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