0
Help create search engine
Introduction to Python Can someone please help me do the final project "Search Engine"?
4 Antworten
+ 3
Attempts?
+ 1
Yes try this
text = input()
word = input()
def search(text,word):
if word in text:
return "Word found"
else:
return "Word not found"
print(search(text, word))
0
Thank you.
0
You are welcome