python get index of min element in list code example
Example 1: find location of max value in python list
>>> m = max(a)
>>> [i for i, j in enumerate(a) if j == m]
[9, 12]
Example 2: index of maximum value in list python
[i for i, x in enumerate(l) if x == max(l)]