Trouver l'index de la valeur maximale dans le tableau 2D Python

from numpy import unravel_index
unravel_index(a.argmax(), a.shape)
Merwanski