summaryrefslogtreecommitdiff
path: root/progs/a363.py
blob: e1cd79253c1616c3aa6557c616656b508526a3be (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