how to detect index of higher value in list python code example
Example: find location of max value in python list
>>> m = max(a)
>>> [i for i, j in enumerate(a) if j == m]
[9, 12]
>>> m = max(a)
>>> [i for i, j in enumerate(a) if j == m]
[9, 12]