📅  最后修改于: 2022-03-11 14:45:47.606000             🧑  作者: Mango
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)