def ex3(): x = np.random.randn(1000) # Boxplot #plt.boxplot(x) # Histogram plt.hist(x) plt.title("Mon Titre") plt.show()