Question: 
Write a python function to check whether the word is present in a given sentence or not.


Model's Code:
def is_Word_Present(sentence, word):
    return word in sentence.split()



Sample Correct Code:
def is_Word_Present(sentence,word): 
    s = sentence.split(" ") 
    for i in s:  
        if (i == word): 
            return True
    return False


Asserts:
assert is_Word_Present("machine learning","machine") == True
assert is_Word_Present("easy","fun") == False
assert is_Word_Present("python language","code") == False


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

Test 897 of 974: 691/897 (77.03455964325529%): success