''' Author: Day 15 Homework - Problem #1 The following program plots the list of forecasted temperatures on a lineplot graph. To finish this problem do the following steps: - Fill in the author field in line 2 with your name. - Change the parameter of the get_forecasts function so that the plot shows the forecast for New York. - Optional: Add a title to the graph. Hint: Blockpy has a block that does this. ''' import matplotlib.pyplot as plt import weather temperatures_list = weather.get_forecasts("Blacksburg, VA") plt.plot(temperatures_list) plt.show()