python字符串统计某个字符个数
时间: 2024-01-04 17:40:42 浏览: 76
你可以使用 Python 中的 count() 方法来统计一个字符在字符串中出现的次数,示例如下:
```python
str = "Hello, World!"
count = str.count('o')
print("The count of 'o' in the string is:", count)
```
输出结果为:
```
The count of 'o' in the string is: 2
```
其中,count() 方法接受一个参数,即需要统计的字符,返回该字符在字符串中出现的次数。在上面的示例中,我们统计了字符串中字母 'o' 的出现次数,结果为 2。
阅读全文