contains substring python$ code example
Example: python string in string
>>> 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