Notebook E

Fill in a module description here
import matplotlib.pyplot as plt
from os import write
write(1, b'Starting notebook_e.ipynb\n')
26
fig, ax = plt.subplots()
ax.plot([1,2,3])
plt.show()
<Figure size 640x480 with 1 Axes>
write(1, b'Finishing notebook_e.ipynb\n')
27