An example IPython notebook

Some introductory text.

  • Some bullet points
    1. item 1 in emph
    2. item 2 but in bold
  • More bullets...

In [1]:
print("Hello world!")


Hello world!

More markdown

Some math:

$$ e^{i\pi} = -1 $$

An image:


In [3]:
%matplotlib inline
from matplotlib import pyplot as plt

plt.plot(range(5))


Out[3]:
[<matplotlib.lines.Line2D at 0x11060edd0>]

In [ ]: