Python计算字符串中zimut出现的次数
时间: 2024-04-20 08:04:22 浏览: 81
用Regex类计算一个字符串出现次数是最好方法
可以使用Python中的count()函数来计算字符串中某个子串出现的次数。下面是一个例子:
```python
my_string = "hello world"
count = my_string.count("l")
print(count)
```
输出结果为:
```
3
```
这里我们计算了字符串中字母"l"出现的次数。如果你想计算字符串中某个子串出现的次数,只需要将子串作为count()函数的参数即可。例如,如果你想计算字符串"hello world"中子串"lo"出现的次数,可以这样写:
```python
my_string = "hello world"
count = my_string.count("lo")
print(count)
```
输出结果为:
```
1
```
这里我们计算了字符串中子串"lo"出现的次数。
阅读全文