运行结果尺寸: 625 x 591
x
 
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