This question already has an answer here:
- Does Python have a string 'contains' substring method? 17 answers
I have two strings and I would like to check whether the first is a substring of the other. Does Python have such a built-in functionality?
This question already has an answer here:
I have two strings and I would like to check whether the first is a substring of the other. Does Python have such a built-in functionality?
Try using in
like this:
>>> x = 'hello'
>>> y = 'll'
>>> y in x
True
Try
isSubstring = first in theOther
string.find("substring")
will help you. This function returns -1
when there is no substring.