统计形式参数s所指字符串中数字出现次数
时间: 2023-05-29 12:06:35 浏览: 77
统计字符出现的次数
5星 · 资源好评率100%
以下是Python语言的实现方式:
```python
def count_digits(s: str) -> int:
count = 0
for c in s:
if c.isdigit():
count += 1
return count
```
该函数接受一个字符串参数s,返回其中数字出现的次数。函数通过遍历字符串中的每个字符,检查是否为数字,并计数。最后返回计数器的值。
示例:
```python
s = "Hello, 123 world!"
count = count_digits(s)
print(count) # Output: 3
```
在上面的示例中,字符串s中有3个数字:1、2和3。因此,函数返回3。
阅读全文