Copier le tableau le long de l'axe Numpy

a = np.array([[1, 2], [1, 2]])

# indexing with np.newaxis inserts a new 3rd dimension, which we then repeat the
# array along, (you can achieve the same effect by indexing with None, see below)
b = np.repeat(a[:, :, np.newaxis], 3, axis=2)

print(b[:, :, 2])
# [[1 2]
#  [1 2]]
Real Raccoon