设计一个函数,统计其数字,字母其他字符的个数
时间: 2023-11-07 13:15:44 浏览: 69
好的,以下是 Python 代码实现:
```python
def count_chars(string):
digit_count = 0
letter_count = 0
other_count = 0
for char in string:
if char.isdigit():
digit_count += 1
elif char.isalpha():
letter_count += 1
else:
other_count += 1
return digit_count, letter_count, other_count
```
这个函数接受一个字符串作为参数,然后统计其中的数字、字母和其他字符的个数,并将它们分别返回。
阅读全文