from matplotlib.pyplot import *
annees=[x for x in range(2011,2019)]
nombres=[2626,5663,8779,10555,17240,21793,24904,31069]
scatter(annees,nombres)
show()


