7-1查找字符串
时间: 2023-11-27 15:05:26 浏览: 68
查找字符串
查找字符串可以使用字符串的 find() 方法,该方法会返回字符串中指定子字符串的第一个匹配位置,如果找不到则返回 -1。例如:
```python
s = "hello world"
pos = s.find("world")
print(pos) # 输出 6
```
另外,字符串还有 count() 方法可以用来统计子字符串在字符串中出现的次数。例如:
```python
s = "hello world"
count = s.count("l")
print(count) # 输出 3
```
阅读全文