Search Engine Solution Question | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 1

Search Engine Solution Question

https://www.sololearn.com/learn/courses/JUMP_LINK__&&__python__&&__JUMP_LINK-introduction/code-project/365164530?returnUrl=/learn/courses/python-introduction I am struggling with the 'search engine' problem at the end of Intro to Python. I feel like I am very close but there seems to be a problem in my code I cannot identify. The goal of the problem is to identify if a word is found within a sample of text. If so, output "word found" otherwise "word not found". My program accomplishes this successfully but then also outputs "none" underneath the first output. Anyone know why?

30th Jan 2023, 8:02 PM
Alex Andes Gascon
2 Respostas
+ 13
Alex Andes Gascon , to find the issue you have, we need to see your attempt. > please save your code in playground and link it here.
30th Jan 2023, 8:27 PM
Lothar
Lothar - avatar
+ 4
without seeing your code, it is hard to tell where the problem is. But I'm guessing you defined a function with a print function inside and no return value and passed this function to another print function.... def foo(): print('something') print(foo()) --> something None (implicit return value if there is no return) if so, just call it, don't print it: foo() --> something or return the value instead of printing it: def foo(): return 'something' then print the return value (this time, return would not be None): print(foo()) --> something
31st Jan 2023, 12:45 AM
Bob_Li
Bob_Li - avatar