Notebook D

Fill in a module description here
import matplotlib.pyplot as plt
from os import write
write(1, b'Starting notebook_d.ipynb\n')
26
fig, ax = plt.subplots()
ax.plot([1,2,3])
plt.show()

write(1, b'Finishing notebook_d.ipynb\n')
27