0
Help, I am struggle to make the code below for search engine
There's some bugs but I am not found them text = input() word = input () def search(text, word): if word in text: print("word found") else: print("word not found") (search(text, word))
1 Respuesta
+ 3
W should be uppercase in "Word..."