import matplotlib.pyplot as plt annees = [a for a in range(2012,2020)] employes = [43, 47, 53, 62, 67, 78, 92, 108] plt.plot(annees, employes, 'x') plt.show()