Can someone help me with 42 Code project in Python for beginners pls? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can someone help me with 42 Code project in Python for beginners pls?

29th Aug 2022, 1:06 AM
Devris Tunc
Devris Tunc - avatar
7 Answers
+ 2
to complete the task, you need to remove the print command from the last line of code and call the function with parameters yourself
29th Aug 2022, 6:17 PM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
+ 2
programming is also a lot of mindfulness. sometimes even because of an extra semicolon or its absence, the whole large program collapses
30th Aug 2022, 5:41 AM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
+ 2
Be patient “Any software engineer will likely give a new coder the same advice: be patient. Coding, while great, is one of the most frustrating things to learn. You’ll spend three hours staring at your code, wondering why it’s not working, only to be missing a semicolon somewhere. But when you finally get it working, it’s worth it.”– Jake Byman, Senior Software Engineer
30th Aug 2022, 5:44 AM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
+ 1
Hi! Have you any code for this? What help do you need?
29th Aug 2022, 10:00 AM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
+ 1
This is my code: text = input() word = input() def search(t,w): if w in t: print("Word found") else: print("Word not found") print(search(text, word))
29th Aug 2022, 4:28 PM
Devris Tunc
Devris Tunc - avatar
+ 1
Bruv ty man such a little mistake i didnt see it Ty mate
29th Aug 2022, 9:48 PM
Devris Tunc
Devris Tunc - avatar
0
This is the task but i cant find my mistake in the code above: The given code takes a text and a word as input and passes them to a function called search(). The search() function should return "Word found" if the word is present in the text, or "Word not found", if it’s not. Sample Input "This is awesome" "awesome" Sample Output Word found
29th Aug 2022, 4:29 PM
Devris Tunc
Devris Tunc - avatar