我如何检查一个给定的Python字符串是否是另一个的子字符串?

我有两个字符串,我想检查第一个是否是另一个的子字符串。Python有这样的内置功能吗?

454947 次浏览

试一试

isSubstring = first in theOther

尝试像这样使用in:

>>> x = 'hello'
>>> y = 'll'
>>> y in x
True

string.find("substring")将帮助你。当没有子字符串时,此函数返回-1