python get index of minimum value in list code example

Example 1: python find index of highest value in list

numbers = [5, 4, 7, 3, 9, 1, 2]
biggest_number = max(numbers)
print(numbers.index(biggest_number))

Example 2: find the index of minimum element in a list python

# function to find minimum and maximum position in list
def minimum(a, n):
  
    # inbuilt function to find the position of minimum 
    minpos = a.index(min(a))
      
    # inbuilt function to find the position of maximum 
    maxpos = a.index(max(a)) 
      
    # printing the position 
    print "The maximum is at position", maxpos + 1  
    print "The minimum is at position", minpos + 1

Example 3: index to min python

import numpy as np
index_min = np.argmin(values)

Example 4: python min value index from an array

if isMinLevel:
    return values.index(min(values))
else:
    return values.index(max(values))

Example 5: find location of max value in python list

>>> m = max(a)
>>> [i for i, j in enumerate(a) if j == m]
[9, 12]

Example 6: maximum and index of a list pythopn

>>> m = max(a)
>>> [i for i, j in enumerate(a) if j == m]
[9, 12]