get index of highest value in array python
result = numpy.where(arr == numpy.amax(arr))
get index of highest value in array python
result = numpy.where(arr == numpy.amax(arr))
# get the largest number in a list and print its indexes
numbers = 1,3,11,42,12,4001
highestnumber = -999
for i in numbers:
if i > highestnumber:
highestnumber = i
print(numbers.index(highestnumber))
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us