<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 #2

    Apply what you have learned in the previous exercises.
    Graph a line plot of the recent stock changes
    for Facebook.

    Hint: stocks.get_past("Facebook") returns a list
          with the recent stock changes for the company.
'''

import matplotlib.pyplot as plt
import stocks

</pre></body></html>