import csv workbook_file = open('Workbook1.csv','r') workbook_reader = csv.reader(workbook_file) for row in workbook_reader: print(row) workbook_file.close()