Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 23 Online
OpenStudy (anonymous):

a = 'Kunle is a boy' b = 'Kunle is a girl' def isIn(a, b): if yes: str(true) else: str(false) Tried writing a program that accepts two strings as arguments and returns True if either string occurs anywhere in the other and False otherwise. Please, kindly check for errors.

OpenStudy (anonymous):

``` if yes: str(true) else: str(false) ``` This is no different than `str(bool(yes))`

OpenStudy (anonymous):

Consider `a.find(b) != - 1 or b.find(a) != -1`

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!