Jupyter Notebook Demo¶
We can run simple jupyter notebooks automatically.
In [1]:
Copied!
import matplotlib.pyplot as plt
x = range(10)
y = [i**2 for i in x]
plt.plot(x, y)
import matplotlib.pyplot as plt
x = range(10)
y = [i**2 for i in x]
plt.plot(x, y)
Out[1]:
[<matplotlib.lines.Line2D at 0x7f497047c3a0>]
In [ ]:
Copied!