# DOESN'T WORK BECAUSE WE DON'T HAVE FAVORITES.CSV import csv with open("favorites.csv") as file: reader = csv.DictReader(file) scratch, c, python = 0, 0, 0 for row in reader: favorite = row['language'] if favorite == "Scratch": scratch += 1 elif favorite == "C": c += 1 elif favorite == "Python": python += 1 print("Scratch:", scratch)