2 D tableau en python avec des zéros
[ [0]*M for _ in range(N) ] #for N by M shape
Panicky Platypus
[ [0]*M for _ in range(N) ] #for N by M shape
np.zeros((2, 1))
array([[ 0.],
[ 0.]])
a = [[0]*10]*10