输入一字符串,统计出其数字字符的个数。
时间: 2024-04-30 12:17:35 浏览: 47
统计字符串中字母和数字个数
可以使用循环遍历字符串的每个字符,判断是否是数字字符,如果是则计数器加一。
以下是 Python 代码示例:
```python
string = input("请输入字符串:")
count = 0
for char in string:
if char.isdigit():
count += 1
print("数字字符个数为:", count)
```
输入示例:
```
请输入字符串:hello123world456
```
输出示例:
```
数字字符个数为: 6
```
阅读全文