编写函数,求给定字符串中数字字符的个数,在主函数中输入abc123fg及输出统计的个数。
时间: 2024-05-03 10:16:54 浏览: 137
C语言统计字符串中字母、数字、空格和其他字符的个数
以下是 Python 代码实现:
```python
def count_digits(s):
count = 0
for char in s:
if char.isdigit():
count += 1
return count
s = input("请输入一个字符串:")
print("数字字符的个数为:", count_digits(s))
```
运行结果:
```
请输入一个字符串:abc123fg
数字字符的个数为: 3
```
阅读全文