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