partie3_ex72_1.py

Created by cahier-indice-algo-1techno

Created on April 22, 2022

146 Bytes


from matplotlib.pyplot import *

N = [0, 1, 2, 3, 4, 5, 6]
U = [2400 - 40 * n for n in range(7)]
scatter(N, U)
grid()
show()