Pythonにおいて、文字列の中に部分文字列(substring)が含まれているかの確認方法です。

>>> "foo" in "fooooooooo"
True

のように、「in」を使います。

if "foo" in "fooooooo":
     print("true")
Python