Python – Does Python have a string ‘contains’ substring method

containspythonstringsubstring

I'm looking for a string.contains or string.indexof method in Python.

I want to do:

if not somestring.contains("blah"):
   continue

Best Answer

You can use the in operator:

if "blah" not in somestring: 
    continue