python输入一行字符,统计其中大写英文字母,小写英文字母,空格,数字和其他字符的个数
时间: 2023-06-05 07:08:06 浏览: 504
输入一个字符串,统计出这个字符串的英文大写字母、小写字母、数字、空格以及其它字符的个数
5星 · 资源好评率100%
好的,这个问题的答案是可以的。
代码如下:
```python
line = input("请输入一行字符:")
upper = 0
lower = 0
space = 0
digit = 0
other = 0
for char in line:
if char.isupper():
upper += 1
elif char.islower():
lower += 1
elif char.isspace():
space += 1
elif char.isdigit():
digit += 1
else:
other += 1
print("大写字母有", upper, "个")
print("小写字母有", lower, "个")
print("空格有", space, "个")
print("数字有", digit, "个")
print("其他字符有", other, "个")
```
输入一行字符后,代码会遍历每个字符,判断它属于哪个类别,然后累加对应的计数器。最后输出各类字符的个数。
阅读全文