Visualization of normal distribution experiments

It is easy to make normal distribution but how to visualization of normal distribution experiments?

 

For everybody who come here only for pure plot i have a code:

from scipy.stats import norm
import numpy as np
import matplotlib.pyplot as plt

x= np.arange(-3,3,0.05)
plt.plot(x, norm.pdf(x))

plt.show()

Visualization of normal distribution experiments

For everybody who interested in experiments with normal distribution in Python I invite to below code: