summaryrefslogtreecommitdiff
path: root/progs/a925.py
blob: bf571548cb64d95641c24517db42c1870dcf980e (plain)
1
2
3
def Find_Max_Length(lst):  
    maxLength = max(len(x) for x in lst )
    return maxLength