Question: 
Write a python function to check whether the length of the word is even or not.


Model's Code:
def word_len(word):
    return len(word) % 2 == 0



Sample Correct Code:
def word_len(s): 
    s = s.split(' ')   
    for word in s:    
        if len(word)%2==0: 
            return True  
        else:
          return False


Asserts:
assert word_len("program") == False
assert word_len("solution") == True
assert word_len("data") == True


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 964 of 974: 738/964 (76.55601659751036%): success