import csv # ---Read the file--- exampleFile = open(r'file.csv') # Open the csv file exampleReader = csv.reader(exampleFile) # convert to a list for row in exampleReader: print(row)