+ 1
search engine project from beginner
text = input() word = input() def_in_search(text, word): if word in text: print('word found') else: print('word not found') #im trying for so long and every time it says Syntex is wrong, can someone tell me where I'm wrong
1 Antwort
+ 2
With Explanation
https://code.sololearn.com/c0W4Iu0pUs1k/?ref=app