python get id max code example
Example 1: python min value index from an array
if isMinLevel:
return values.index(min(values))
else:
return values.index(max(values))
Example 2: find location of max value in python list
>>> m = max(a)
>>> [i for i, j in enumerate(a) if j == m]
[9, 12]