Note
Go to the end to download the full example code.
Demo#
Stuff in here is treated as rst so this works
a
b
or
x
y
z
Sections#
Subsections#
Subsubsections#
Paragraphs#
code that is to be run goes outside these blocks
import numpy as np
from matplotlib import pyplot as plt
More text#
Note
More text something about imports
x = np.linspace(0, 2 * np.pi, 100)
y = np.sin(x)
plt.plot(x, y)

[<matplotlib.lines.Line2D object at 0x7ff1d3b97430>]
Total running time of the script: (0 minutes 0.083 seconds)