判断字符串是否为子串
时间: 2023-10-17 14:06:58 浏览: 149
数据结构语言第四章字符串正规版资料.ppt
可以使用 Python 中的 `in` 关键字来判断一个字符串是否为另一个字符串的子串。例如:
```python
s1 = "hello world"
s2 = "world"
if s2 in s1:
print("s2 is a substring of s1")
else:
print("s2 is not a substring of s1")
```
输出结果为:`s2 is a substring of s1`
阅读全文