import csv with open('file.csv', newline='') as f: reader = csv.reader(f) data = [tuple(row) for row in reader] print(data)