有一段文字共有5行,分别统计其中的大写英文字母、小写英文字母、数字、空格及其他字符的个数并输出结果
时间: 2023-07-04 10:08:33 浏览: 145
输入一个字符串,统计出这个字符串的英文大写字母、小写字母、数字、空格以及其它字符的个数
5星 · 资源好评率100%
假设该段文字为text,可以使用如下Python代码统计:
```python
text = "Hello World! 123"
upper_count = 0
lower_count = 0
digit_count = 0
space_count = 0
other_count = 0
for char in text:
if char.isupper():
upper_count += 1
elif char.islower():
lower_count += 1
elif char.isdigit():
digit_count += 1
elif char.isspace():
space_count += 1
else:
other_count += 1
print("大写字母个数:", upper_count)
print("小写字母个数:", lower_count)
print("数字个数:", digit_count)
print("空格个数:", space_count)
print("其他字符个数:", other_count)
```
运行结果为:
```
大写字母个数: 2
小写字母个数: 8
数字个数: 3
空格个数: 2
其他字符个数: 1
```
阅读全文