编写程序输入一行字符,统计其中英文字符、数字、空格及其他字符的个数
时间: 2023-07-10 09:04:20 浏览: 103
python 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数 (示例)
5星 · 资源好评率100%
下面是 Python 的实现代码:
```python
string = input("请输入一行字符:")
letters = 0
digits = 0
spaces = 0
others = 0
for char in string:
if char.isalpha():
letters += 1
elif char.isdigit():
digits += 1
elif char.isspace():
spaces += 1
else:
others += 1
print("英文字母个数为:", letters)
print("数字个数为:", digits)
print("空格个数为:", spaces)
print("其他字符个数为:", others)
```
输入一行字符后,程序会遍历每个字符,判断其属于哪一类,然后对应地增加相应的计数器。最后输出各个计数器的值即可。
阅读全文