1import matplotlib.pyplot as plt
2import matplotlib.style as 'fivethirtyeight'
3
4#Note that we must use the style.use()
5#function before we create the graph —
6#before calling the plt.plot() function.
7#eg
8
9style.use('fivethirtyeight')
10plt.plot([1, 2, 3], [5, 2, 7])
11plt.show()