axe de changement de tableau Numpy Python

>>> x = np.array([[1,2,3]])
>>> np.swapaxes(x,0,1)
array([[1],
       [2],
       [3]])
Blushing Butterfly