Pourquoi Python s'arrête après plt.show ()
from matplotlib.pyplot import plot, draw, show
plot([1,2,3])
draw()
print('continue computation')
# at the end call show to ensure window won't close.
show()
Fancy Flamingo