Answers for "find the index of minimum element in a list python"

1

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
Posted by: Guest on April-21-2021

Code answers related to "find the index of minimum element in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language