统计字符串中去除某个字符的其他字符的数量
时间: 2023-04-29 21:02:26 浏览: 141
统计一个字符串中某个字符的个数
4星 · 用户满意度95%
可以使用 Python 的字符串方法 replace() 来统计字符串中除了某个字符外其他字符的数量。
示例代码:
```python
string = "example string"
char = "e"
count = len(string) - len(string.replace(char, ""))
print(count)
```
这里用到了字符串方法 replace() 和 len(),replace()方法可以将某个字符替换成空字符串,len()方法可以返回字符串长度。
经过replace()替换后的字符串与原字符串相减,得到的即为要求字符的个数。
阅读全文