summaryrefslogtreecommitdiff
path: root/progs/a267.py
blob: 6ef029aca598c48e660f87a3c7b980c5463e6916 (plain)
1
2
3
4
5
6
7
8
9
def length_Of_Last_Word(a): 
    l = 0
    x = a.strip() 
    for i in range(len(x)): 
        if x[i] == " ": 
            l = 0
        else: 
            l += 1
    return l