Найти индекс максимального значения в 2D массиве Python

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