python编写函数,接收一个字符串,分别统计大写字母,小写字母,数字,其他字符的个数,并以元组的形式返回结果
时间: 2023-11-18 22:05:20 浏览: 195
python实现字符串中字符分类及个数统计
5星 · 资源好评率100%
好的,这是 Python 代码实现:
```python
def count_chars(s):
upper_count = 0
lower_count = 0
digit_count = 0
other_count = 0
for char in s:
if char.isupper():
upper_count += 1
elif char.islower():
lower_count += 1
elif char.isdigit():
digit_count += 1
else:
other_count += 1
return (upper_count, lower_count, digit_count, other_count)
```
这个函数接收一个字符串 `s`,然后遍历字符串中的每个字符,分别判断它是大写字母、小写字母、数字还是其他字符,统计各种字符的个数。最后,将这些计数值打包成一个元组并返回。
阅读全文