How to find max value and max index in a list with Python

2 Answers

0 votes
lst = [4, 6, 2, 9, 8, 1, 5, 7]

max_value = 0
max_index = 0

for i, n in enumerate(lst):
    if (n > max_value):
        max_value = n
        max_index = i

print(max_value)
print(max_index)  





'''
run:

9
3

'''

 



answered Apr 19, 2021 by avibootz
0 votes
lst = [4, 6, 2, 9, 8, 1, 5, 7]

max_value = max(lst)
max_index = lst.index(max_value)

print(max_value)
print(max_index)  





'''
run:

9
3

'''

 



answered Apr 19, 2021 by avibootz

Related questions

...