summaryrefslogtreecommitdiff
path: root/progs/a453.py
blob: ddef225053b1739b386b3c6d548d62f4020c4abd (plain)
1
2
3
4
5
6
def len_log(list1):
    max=len(list1[0])
    for i in list1:
        if len(i)>max:
            max=len(i)
    return max