import matplotlib. pyplot as plt def simule_desintegration(n,p): L=Liste_nb_noyaux_restants(n,p) plt.plot(range(len(L)),L, linestyle ="none",marker=".") plt.show() simule_desintegration(10000,0.03)