summaryrefslogtreecommitdiff
path: root/progs/a781.py
blob: d70c0c82ac2c2a1e055e439cb53543cd6ba542df (plain)
1
2
3
def Find_Max(lst): 
    maxList = max((x) for x in lst) 
    return maxList