How to get the index of maximum and minimum value of a list in Python

2 Answers

0 votes
lst = [17, 13, 1, 5, 19, 18, 7]

print(lst.index(max(lst)))

print(lst.index(min(lst)))
 
 
      
  
'''
run:
  
4
2

'''

 



answered Apr 17, 2021 by avibootz
0 votes
import numpy

lst = [17, 13, 1, 5, 19, 18, 7]

print(numpy.argmax(lst))

print(numpy.argmin(lst))
 
 
      
  
'''
run:
  
4
2

'''

 



answered Apr 17, 2021 by avibootz
...