Temukan Indeks Nilai Maks di Python Array 2D

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