Python字符串包含

  • Post author:
  • Post category:python


Python String class has

__contains__()

function that we can use to check if it contains another string or not.

Python字符串类具有

__contains__()

函数,我们可以使用该函数检查它是否包含另一个字符串。

Python字符串包含

(

Python String contains

)


Python string


__contains__()

is an instance method and returns boolean value True or False depending on whether the string object contains the specified string object or not. Note that the Python string contains() method is case sensitive.


Python字符串


__contains__()

是一个实例方法,根据字符串对象是否包含指定的字符串对象,返回布尔值True或False。 请注意,Pytho