partie1_ex51.py

Created by cahier-indice-algo-1techno

Created on April 22, 2022

167 Bytes


from matplotlib.pyplot import *

an = [2015, 2016, 2017, 2018, 2019, 2020]
parc = [1.47, 1.49, 1.6, 2.2, 2.26, 0.8]
scatter(an, parc)
grid()
show()