partie3_ex67.py

Created by cahier-indice-algo-1techno

Created on April 22, 2022

125 Bytes


from matplotlib.pyplot import *

N = [0, 1, 2, 3, 4, 5]
U = [2**n for n in N]
scatter(N, U)
grid()
show()