编写一个函数找出字符串中某个特定字符出现的次数 不使用count 方法
时间: 2023-11-12 21:28:32 浏览: 107
C语言字符/字符串相关函数收藏大全
好的,以下是一个可以找出字符串中某个特定字符出现的次数的函数,它不使用 count 方法:
```python
def count_char(string, char):
count = 0
for i in string:
if i == char:
count += 1
return count
```
你可以调用这个函数来查找字符串中某个字符出现的次数。例如,如果你想要查找字符串 "hello world" 中字母 "l" 出现的次数,可以这样调用:
```python
count = count_char("hello world", "l")
print(count) # 输出 3
```
希望这个函数能够满足你的需求。
阅读全文