编写函数,统计字符串中数字字符的个数
时间: 2023-04-29 15:02:55 浏览: 125
统计一个字符串中数字的个数
可以使用循环遍历字符串中的每个字符,判断是否为数字字符,如果是则计数器加1。最后返回计数器的值即可。
示例代码如下:
```python
def count_digits(s):
count =
for c in s:
if c.isdigit():
count += 1
return count
```
其中,`isdigit()` 方法用于判断字符是否为数字字符。
阅读全文