Answers for "Max fonction code in python"

0

Max fonction code in python

def Maximum(*args):
    Max = 0
    for item in List:
        if item > Max:
            item = Max
    return Max


List = [1,5,8,77,24,95]

maxList = Maximum(List)
print str(maxList)
Posted by: Guest on August-10-2021

Python Answers by Framework

Browse Popular Code Answers by Language