import csv import matplotlib.pyplot as plt # 1: csv_data = list(csv.reader(open(1880-2022.csv))) names = csv_data[0] # 2: for row in csv_data: years = row[0] temp_anomalies = row[1] # 3: plt.plot(years, temp_anomalies) plt.show()