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


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



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("Hadoop") == False
assert word_len("great") == True
assert word_len("structure") == True


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

Test 79 of 974: 60/79 (75.9493670886076%): success