Créer un tableau zéro en python
# WE CAN USE NUMPY FOR THIS
import numpy as np
np.zeros(5) # Creates an array [0., 0., 0., 0., 0.]
# For integer array of zeros
np.zeros((5,), dtype=int) # Creates array [0, 0, 0, 0, 0]
My_Name's_DEEZ