demo_numpy_random_normal3.py:
from numpy import random import matplotlib.pyplot as plt import seaborn as sns sns.distplot(random.normal(size=1000), hist=False) plt.show()
C:\Users\My Name>python demo_numpy_random_normal3.py