python min index code example
Example 1: python index of max value in list
a = [1, 7, 3, 12, 5]
min_index = a.index(min(a))
max_index = a.index(max(a))
Example 2: index to min python
import numpy as np
index_min = np.argmin(values)
Example 3: python how to return max num index
import numpy as np
x=[1,2,3,4,5]
max_index=np.argmax(x)
Example 4: python min value index from an array
if isMinLevel:
return values.index(min(values))
else:
return values.index(max(values))
Example 5: maximum and index of a list pythopn
>>> m = max(a)
>>> [i for i, j in enumerate(a) if j == m]
[9, 12]
Example 6: index of maximum value in list python
[i for i, x in enumerate(l) if x == max(l)]