Answers for "program which returns a list containing the minimum and the maximum of the numbers of the list given in parameter"

6

how to find highest number in list without using max function python

Numbers = [90,78,34,50,100,99]
higest_number = 0
for number in Numbers:
    if number > higest_number:
        higest_number = number
Posted by: Guest on August-01-2021

Code answers related to "program which returns a list containing the minimum and the maximum of the numbers of the list given in parameter"

Python Answers by Framework

Browse Popular Code Answers by Language