Project Jupyter

Jupyter is a mix of Prose and Code.

This is a MarkDown - formatted "cell".


In [1]:
# This is some Python code

12 + 34


Out[1]:
46

In [2]:
import numpy as np

In [3]:
np.arange(10)


Out[3]:
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])

Jupyter runs in the webbrowser, and the JavaScript frontend can make it interactive.


In [4]:
import ipywidgets

In [6]:
ipywidgets.FloatSlider()