python统计字符串中指定字符出现的次数
时间: 2023-09-04 20:17:24 浏览: 118
python统计字符串中指定字符出现次数的方法
5星 · 资源好评率100%
可以使用count()函数来统计字符串中指定字符出现的次数。
例如,统计字符串s中字符'a'出现的次数:
```python
s = "hello world"
count = s.count('a')
print(count) # 0
```
输出结果为0,因为字符串s中并没有字符'a'。
再例如,统计字符串s中字符'l'出现的次数:
```python
s = "hello world"
count = s.count('l')
print(count) # 3
```
输出结果为3,因为字符串s中字符'l'出现了3次。
阅读全文