python string类型判断包含
时间: 2023-05-04 18:04:08 浏览: 125
在Python中,我们可以通过使用in操作符或find()函数来判断字符串是否包含另一个字符串。
使用in操作符时,我们可以使用以下语法:
```
if substring in string:
# code to execute if substring is found in string
```
这将检查字符串string中是否包含子字符串substring。如果是,则条件为真,代码块中的代码将被执行。
另一种方法是使用find()函数,该函数返回子字符串在字符串中的索引位置。如果子字符串不在字符串中,find()函数将返回-1。
```
index = string.find(substring)
if index != -1:
# code to execute if substring is found in string
```
这将返回子字符串在字符串中首次出现的索引位置或-1(如果它不是子字符串)。
我们还可以使用startswith()和endswith()函数来检查一个字符串是否以另一个字符串开头或结尾,例如:
```
if string.startswith(substring):
# code to execute if string starts with substring
if string.endswith(substring):
# code to execute if string ends with substring
```
总之,Python提供了多种方法来判断字符串是否包含另一个字符串,具体取决于您的需求和个人喜好。
阅读全文