统计字符串里某个字符出现的次数
时间: 2023-10-18 12:04:43 浏览: 237
统计一个字符串中每个字符出现的次数
可以使用字符串方法`count()`来统计一个字符串中某个字符出现的次数。
例如,统计字符串`hello world`中字符`o`出现的次数:
```python
s = "hello world"
count = s.count("o")
print(count) # 输出 2
```
如果要统计多个字符出现的次数,可以使用循环遍历字符串并计数。
例如,统计字符串`hello world`中字符`o`和`l`出现的次数:
```python
s = "hello world"
count_o = 0
count_l = 0
for c in s:
if c == "o":
count_o += 1
elif c == "l":
count_l += 1
print(count_o) # 输出 2
print(count_l) # 输出 3
```
阅读全文