String Contains

suggest change

Python makes it extremely intuitive to check if a string contains a given substring. Just use the in operator:

>>> "foo" in "foo.baz.bar"
True

Note: testing an empty string will always result in True:

>>> "" in "test"
True

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents