Answers for "how to find the max value in a list in python without using min()"

5

find max value in list python

mylist = [1, 7, 3, 12, 5]

min_value = min(mylist)
max_value = max(mylist)
Posted by: Guest on April-22-2021

Code answers related to "how to find the max value in a list in python without using min()"

Python Answers by Framework

Browse Popular Code Answers by Language