对于给定的一个字符串,统计其中数字字符出现的次数
时间: 2023-04-30 20:02:20 浏览: 102
统计给定字符串在文本中出现的次数.c
5星 · 资源好评率100%
可以使用 Python 中内置的 isdigit() 函数来统计字符串中数字字符的出现次数。代码如下:
```python
string = "this is a test string 123"
count = 0
for i in string:
if i.isdigit():
count += 1
print(count)
```
运行结果为 3
阅读全文