计算字符串某个字符出现次数
时间: 2023-11-12 22:12:58 浏览: 65
AlternatingCharacters:一个 Java 程序,它计算最小字符删除次数以获取具有交替字符的字符串
可以使用 Python 中的 count() 方法来计算字符串中某个字符出现的次数。例如,下面的代码计算字符串 s 中字符 c 出现的次数:
```python
s = "hello world"
c = "l"
count = s.count(c)
print(count)
```
输出结果为:
```
3
```
表示字符 "l" 在字符串 "hello world" 中出现了 3 次。
阅读全文