import matplotlib.pyplot as plt AvgTemp = [] for temp in ___: AvgTemp.append(temp["Avg Temp"]) print(AvgTemp) plt.plot(AvgTemp) plt.show()