import csv filename = 'file.csv' with open(filename, 'r') as csvfile: datareader = csv.reader(csvfile) for row in datareader: print(row) COPY