用python语言输入一行字符,分别统计出其中英文字母,空格和其它字符的个数
时间: 2023-11-07 22:58:27 浏览: 54
python 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数 (示例)
5星 · 资源好评率100%
```python
s = input("请输入一行字符:")
letters = 0
spaces = 0
others = 0
for c in s:
if c.isalpha():
letters += 1
elif c.isspace():
spaces += 1
else:
others += 1
print("英文字母个数:", letters)
print("空格个数:", spaces)
print("其它字符个数:", others)
```
示例输出:
```
请输入一行字符:Hello, World!
英文字母个数: 12
空格个数: 1
其它字符个数: 1
```
阅读全文