In [1]:
import numpy as np
import matplotlib.pyplot as plt

plt.hist(np.random.randn(1000))
plt.show()

In [ ]: