Does Python have a string ‘contains’ substring method?

You can use the in operator:

if "blah" not in somestring: 
    continue

Leave a Comment