how to see if a certain word is in a string in python 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