python统计字符串出现的次数
时间: 2023-11-09 12:08:44 浏览: 86
python统计字符串中指定字符出现次数的方法
5星 · 资源好评率100%
你可以使用 Python 中的 `count()` 函数来统计字符串中某个子字符串出现的次数。
例如,假设你想要统计字符串 `"hello world"` 中字母 `"l"` 出现的次数,你可以使用以下代码:
```python
string = "hello world"
count = string.count("l")
print(count) # 输出 3
```
注意,`count()` 函数区分字母大小写,因此如果你想要统计字符串中某个子字符串不区分大小写出现的次数,你需要先将字符串全部转换为小写或大写字母,然后再调用 `count()` 函数。例如:
```python
string = "HeLLo WoRLd"
count = string.lower().count("l")
print(count) # 输出 3
```
这里先使用 `lower()` 函数将字符串转换为小写字母,然后再统计字母 `"l"` 出现的次数。
阅读全文