Answers for "get index of highest val in list python"

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
-1

python index of lowest value in list

if isMinLevel:
    return values.index(min(values))
else:
    return values.index(max(values))
Posted by: Guest on April-23-2020

Code answers related to "get index of highest val in list python"

Python Answers by Framework

Browse Popular Code Answers by Language