python find string with in it code example
Example: find string in string 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