输入一行文字,找出其中大写字母、小写字母、空格、数字以及其他字符有多少个?
时间: 2023-04-28 20:00:45 浏览: 96
输入一行字符,分别统计出其中字母、空格、数字和其他字符的个数.pdf
请使用以下代码统计字符个数:
```
s = "输入一行文字"
upper, lower, space, digit, others = 0, 0, 0, 0, 0
for char in s:
if char.isupper():
upper += 1
elif char.islower():
lower += 1
elif char.isspace():
space += 1
elif char.isdigit():
digit += 1
else:
others += 1
print("大写字母个数:", upper)
print("小写字母个数:", lower)
print("空格个数:", space)
print("数字个数:", digit)
print("其他字符个数:", others)
```
阅读全文