输出一个字符在字符串中出现的次数。
时间: 2023-11-12 09:13:48 浏览: 70
好的,我可以帮助你解决这个问题。以下是一个使用 Python 语言解决这个问题的示例代码:
```python
# 定义一个函数,用于计算一个字符在字符串中出现的次数
def count_char_in_string(char, string):
count = 0
for c in string:
if c == char:
count += 1
return count
# 测试函数
s = "hello world"
c = 'l'
print("字符", c, "在字符串", s, "中出现的次数为", count_char_in_string(c, s))
```
代码输出如下:
```
字符 l 在字符串 hello world 中出现的次数为 3
```
希望这个代码能够帮助到你。如果你还有其他问题,欢迎随时问我。
阅读全文