Answers for "python find max element in a list for a range"

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 "python find max element in a list for a range"

Python Answers by Framework

Browse Popular Code Answers by Language