Hello¶
Here's my first blog post using jupyter notebooks.
In [5]:
import random
def rint_list(n):
lst = [random.randint(0,100) for i in range(n)]
return lst
In [6]:
[random.randint(0,100) for i in range(3)]
Out[6]:
In [12]:
import matplotlib.pyplot as plt
%matplotlib inline
In [20]:
plt.hist(rint_list(100))
Out[20]: