输入两个字符串,查看第一个字符串是否是第二个字符串的子串Python。
时间: 2024-09-25 07:00:53 浏览: 77
第4章 字符串.pptx
在Python中,你可以使用`in`关键字或者`str.contains()`方法来检查一个字符串是否是另一个字符串的子串。以下是两种常见方法:
1. 使用`in`关键字:
```python
def is_substring(s1, s2):
return s1 in s2
s1 = "hello"
s2 = "world hello"
print(is_substring(s1, s2)) # 输出: True
```
这里,`is_substring`函数会返回`True`如果`s1`在`s2`中找到,否则返回`False`。
2. 使用`str.contains()`方法:
```python
def is_substring_with_contains(s1, s2):
return s2.contains(s1)
# 对于非标准库的contains()方法,你需要导入StringIO模块,因为str类型在Python中没有此方法
from io import StringIO
def contains(s2_str):
s2 = StringIO(s2_str)
return s1 in s2.read()
s1, s2 = "hello", "world hello"
print(contains(s1, s2)) # 输出: True
```
阅读全文