帮我用python写一段程序:请用户输入一行字符,用程序分别统计出其中的字母(包含大小写)、空格、数字和其他字符的个数
时间: 2023-05-21 17:03:22 浏览: 78
python 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数 (示例)
5星 · 资源好评率100%
当然可以,以下是Python代码:
```python
line = input("请输入一行字符:")
letters = 0
spaces = 0
digits = 0
others = 0
for char in line:
if char.isalpha():
letters += 1
elif char.isspace():
spaces += 1
elif char.isdigit():
digits += 1
else:
others += 1
print("字母个数:", letters)
print("空格个数:", spaces)
print("数字个数:", digits)
print("其他字符个数:", others)
```
输入一行字符后,程序会遍历每个字符,判断它是字母、空格、数字还是其他字符,并分别计数。最后输出各个类别的字符个数。
阅读全文