If you're looking for more than a True/False, you'd be best suited to use the re module, like:
import re
search="please help me out"
fullstring="please help me out so that I could solve this"
s = re.search(search,fullstring)
print(s.group())
s.group()
will return the string "please help me out".