python编程实现:任意输入一个字符串,计算其中包含的数字的个数。
时间: 2023-05-20 17:07:24 浏览: 112
python 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数 (示例)
5星 · 资源好评率100%
代码如下:
```
string = input("请输入一个字符串:")
count = 0
for char in string:
if char.isdigit():
count += 1
print("字符串中包含了 %d 个数字。" % count)
```
阅读全文