用python编写函数接收一个字符串,分别统计大写字母、小写字母、数字、其他字符的个数,并以元组的形式返回结果
时间: 2024-05-07 12:16:19 浏览: 102
python:Python基本。 通过使用数组元组。 它具有有关如何将输入中的新项目追加到元组和数组的详细信息。 另外,如何在字符串中搜索大写字母
```python
def count_chars(s):
upper = 0
lower = 0
digit = 0
other = 0
for c in s:
if c.isupper():
upper += 1
elif c.islower():
lower += 1
elif c.isdigit():
digit += 1
else:
other += 1
return (upper, lower, digit, other)
```
使用示例:
```python
s = "Hello World! 123"
print(count_chars(s)) # 输出 (2, 8, 3, 3)
```
阅读全文