summaryrefslogtreecommitdiff
path: root/progs/a296.py
blob: b4da73152c3a0e44de7cb4b6b5cacf71c5c5b047 (plain)
1
2
3
4
5
6
def is_Word_Present(sentence,word): 
    s = sentence.split(" ") 
    for i in s:  
        if (i == word): 
            return True
    return False