Python是否具有字符串“包含”子字符串方法?

没有python没有'contains'子字符串方法。而是可以使用以下两种方法之一:

Python有一个关键字“ in”,用于查找一个字符串是否是另一个字符串的子字符串。例如,

>>> 'ello' in 'hello world'

True

>>> 'no' in 'hello'

False

如果还需要子字符串的第一个索引,则可以使用find(substr)查找索引。如果此方法返回-1,则表示字符串中不存在子字符串。例如,

>>> 'hello world'.find('ello')

1

>>> 'hello'.find('no')

-1

以上是 Python是否具有字符串“包含”子字符串方法? 的全部内容, 来源链接: utcz.com/z/326497.html

回到顶部