A Heading is Performed¶
Here is the area where I'll be writing human-readable text
In [2]:
# Now I'm importing some libraries!
import matplotlib.pyplot as plt
import numpy as np
Now I'm going to plot an image...
In [3]:
x = np.linspace(0,2*np.pi,100)
plt.plot(x,np.sin(x))
Out[3]: