python字符串查找字符数
时间: 2023-08-15 09:13:08 浏览: 113
要统计 Python 字符串中特定字符的数量,你可以使用字符串的 `count()` 方法。这个方法接受一个需要查找的字符作为参数,并返回该字符在字符串中出现的次数。
下面是一个示例代码:
```python
string = "Hello, World!"
char = "o"
count = string.count(char)
print(f"The character '{char}' appears {count} times in the string.")
```
在这个例子中,我们统计了字符串 "Hello, World!" 中字母 "o" 出现的次数,并将结果输出。运行代码将输出:`The character 'o' appears 2 times in the string.`
阅读全文