How to find maximum value in a list with Python

2 Answers

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

max_value = 0
for n in lst:
    if (n > max_value):
        max_value = n

print(max_value)
  





'''
run:

9

'''

 



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

max_value = max(lst)

print(max_value)





'''
run:

9

'''

 



answered Apr 19, 2021 by avibootz
...