要求实现一个函数,统计给定字符串中的大写字母、小写字母、空格、数字以及其它字符各有多少。
时间: 2024-06-13 18:08:14 浏览: 127
以下是实现该函数的Python代码:
```python
def count_chars(s):
upper_count = 0
lower_count = 0
space_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.isspace():
space_count += 1
elif c.isdigit():
digit_count += 1
else:
other_count += 1
print("大写字母个数:", upper_count)
print("小写字母个数:", lower_count)
print("空格个数:", space_count)
print("数字个数:", digit_count)
print("其他字符个数:", other_count)
```
使用该函数统计给定字符串中的各种字符个数:
```python
s = "Hello World! 123"
count_chars(s)
```
输出结果为:
```
大写字母个数: 2
小写字母个数: 8
空格个数: 2
数字个数: 3
其他字符个数: 1
```
阅读全文