通过函数统计字符串中数字字符个数,返回结果
时间: 2024-03-24 07:17:55 浏览: 54
统计一个字符串中数字的个数
您可以使用如下代码实现:
```python
def count_digit_chars(s):
count = 0
for char in s:
if char.isdigit():
count += 1
return count
```
此函数接收一个字符串作为参数 `s`,并使用一个计数器 `count` 来记录字符串中数字字符的个数。接着,通过 `for` 循环遍历字符串中的每一个字符,使用 `isdigit()` 方法来判断该字符是否为数字字符,如果是则将计数器 `count` 的值加一。最后,返回计数器 `count` 的值即可。
您可以使用如下代码来测试该函数:
```python
s = 'Hello123World456'
digit_count = count_digit_chars(s)
print(digit_count) # 输出:6
```
在上面的测试代码中,我们先定义了一个字符串 `s`,它包含了数字字符和非数字字符。然后我们调用 `count_digit_chars()` 函数来统计 `s` 中数字字符的个数,并将结果存储在 `digit_count` 变量中。最后,我们将 `digit_count` 的值打印输出,得到结果为 `6`。
阅读全文