Comment vérifier s'il y a un mot dans une chaîne en python

>>> str = "Messi is the best soccer player"
>>> "soccer" in str
True
>>> "football" in str
False
Misty Macaw