从键盘上输入一行字符,统计其中英文字母、空格、数字和其他字符的个数
时间: 2024-06-13 14:06:26 浏览: 128
汇编语言统计从键盘输入一段字母
5星 · 资源好评率100%
以下是统计输入字符中英文字母、空格、数字和其他字符个数的Python代码:
```python
s = input("请输入一行字符:")
letters = 0
space = 0
digit = 0
others = 0
for c in s:
if c.isalpha():
letters += 1
elif c.isspace():
space += 1
elif c.isdigit():
digit += 1
else:
others += 1
print("英文字母个数:", letters)
print("空格个数:", space)
print("数字个数:", digit)
print("其他字符个数:", others)
```
阅读全文