编写函数。该函数可实现在一个字符串中查找给定字符出现的次数,并作为函数返回值返回,并在主函数中进行调用
时间: 2024-04-30 22:21:33 浏览: 64
以下是一个简单的 Python 函数,可以实现在一个字符串中查找给定字符出现的次数:
```python
def count_char(string, char):
count = 0
for c in string:
if c == char:
count += 1
return count
```
这个函数接受两个参数:一个字符串 `string` 和一个字符 `char`。它遍历字符串中的每个字符,并将与给定字符相同的字符计数。最后,它返回计数值作为函数返回值。
你可以在主函数中调用这个函数,例如:
```python
s = "Hello, world!"
c = "l"
count = count_char(s, c)
print(f"The character '{c}' appears {count} times in '{s}'.")
```
这会打印出类似于以下内容的消息:
```
The character 'l' appears 3 times in 'Hello, world!'.
```
阅读全文