用Python统计字符串中的数字个数
时间: 2024-03-24 09:14:59 浏览: 44
python实现字符串中字符分类及个数统计
5星 · 资源好评率100%
可以通过遍历字符串中的每个字符,判断是否为数字来统计数字个数,代码如下:
```python
def count_digits(s):
count = 0
for char in s:
if char.isdigit():
count += 1
return count
```
其中,`isdigit()` 方法用于判断字符是否为数字。可以通过以下代码测试:
```python
s = "hello123world456"
print(count_digits(s)) # 输出 6
```
阅读全文