Answers for "how do you print the greatest value"

0

how to write program in python to get the largest nuber

def max_num_in_list( list ):
    max = list[ 0 ]
    for a in list:
        if a > max:
            max = a
    return max
print(max_num_in_list([1, 2, -8, 0]))
Posted by: Guest on January-27-2021

Code answers related to "how do you print the greatest value"

Python Answers by Framework

Browse Popular Code Answers by Language