summaryrefslogtreecommitdiff
path: root/progs/a442.py
blob: 67eda7656e62ff9ab73d706561cabf299040f39b (plain)
1
2
3
4
5
6
7
def word_len(s): 
    s = s.split(' ')   
    for word in s:    
        if len(word)%2!=0: 
            return True  
        else:
          return False