编写函数,接收一个宇符串,分别统计大写字母、小写字母、数字、其他 宇符的个数,并以兀组的形式返回结果。
时间: 2023-12-12 12:55:37 浏览: 56
分别计算字符串中字母、数字及其他字符的数目
以下是 Python 代码实现:
```python
def count_chars(s):
upper_count = 0
lower_count = 0
digit_count = 0
other_count = 0
for c in s:
if c.isupper():
upper_count += 1
elif c.islower():
lower_count += 1
elif c.isdigit():
digit_count += 1
else:
other_count += 1
return [upper_count, lower_count, digit_count, other_count]
```
接收一个字符串作为参数,循环遍历字符串中的每个字符,根据字符的类型分别增加对应计数器的值,最后将四个计数器的值以列表的形式返回。
阅读全文