<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">'''
    Author:
    Day 15 Homework - Problem #3

    The following program shows a line plot of temperatures,
    in Farenheit, for the town of Blacksburg.

    Use the code as a starting point. We would like to see
    a line plot of the temperatures in Celsius.
        celsius = (farenheit - 32) / 1.8

    Note:
        - You can start by creating an empty list:
            list_name = []
        - Iterate through the list (using for) to access
          the individual temperatures from temperatures_list
        - As you obtain new elements for this list
          you can add them to the end by using:
            list_name.append( new_value )
'''

import matplotlib.pyplot as plt
import weather

temperatures_list = weather.get_forecasts("Blacksburg, VA")

plt.plot(temperatures_list)
plt.show()
</pre></body></html>