This will be the first post in our new Pelican blog! You can add any code or markdown cells to this Jupyter notebook, and they will be rendered on your blog.
In [2]:
import random
random.randint(0,100)
Out[2]:
In [4]:
import matplotlib.pyplot as plt
%matplotlib inline
plt.hist([10,5,7,10,1,1,2,3,5])
Out[4]: