use find keyword in python to find somehting in a string code example
Example: how to check if there is a word in a string in python
>>> str = "Messi is the best soccer player"
>>> "soccer" in str
True
>>> "football" in str
False
>>> str = "Messi is the best soccer player"
>>> "soccer" in str
True
>>> "football" in str
False