Python makes it extremely intuitive to check if a string contains a given substring. Just use the in operator:
in
>>> "foo" in "foo.baz.bar" True
Note: testing an empty string will always result in True:
True
>>> "" in "test" True