Answers for "python3 get max value from array and index"

9

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))
Posted by: Guest on October-05-2020
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 "python3 get max value from array and index"

Python Answers by Framework

Browse Popular Code Answers by Language