0
Alguien me ayuda con el proyecto de motor de busqueda de python???
def search(word,text): if word in text: print("Word not found") else: print("Word found") text = input() word = input() print(search(text, word)) https://code.sololearn.com/cNxkcDJsH3y9/?ref=app
2 Answers
+ 3
Asi debe escribirse..
def search (text, word):
if word in text:
return ("Word found") #se usa return entre paréntesis
else :
return ("Word not found")#se usa return entre paréntesis
text = input()
word = input()
print (search(text, word))
0
The last line looks wrong, make it like this:
print(search(word, text))