Can anyone tell me what changes should be done to the code | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can anyone tell me what changes should be done to the code

This is the last project in python "search engine" https://code.sololearn.com/ceSM7PQk2Ybz/?ref=app

30th Sep 2021, 2:03 AM
bernard
bernard - avatar
1 Answer
+ 3
Your function with if/else statement should be on top, then you should take input and only then call your function Just like that: def search (text, word): if word in text: print("Word found") else: print("Word not found") text = input() word = input() search(text, word)
30th Sep 2021, 2:12 AM
Aleksei Radchenkov
Aleksei Radchenkov - avatar