Answers for "how to know the position of max value in a list"

2

python how to return max num index

import numpy as np

x=[1,2,3,4,5]

max_index=np.argmax(x) 
# return the index of the maximun element
# max_index has the value 4
Posted by: Guest on June-07-2020

Code answers related to "how to know the position of max value in a list"

Python Answers by Framework

Browse Popular Code Answers by Language