编写程序,通过输入一行字符,分别统计出其中的数字、英文字母、空格和其他字符的个数。
时间: 2023-11-23 08:47:46 浏览: 35
统计英文字母、空格、数字和其他字符的个数 小程序
5星 · 资源好评率100%
这是一个很好的编程练习!以下是一个示例程序:
```python
line = input("请输入一行字符:")
digits = 0
letters = 0
spaces = 0
others = 0
for char in line:
if char.isdigit():
digits += 1
elif char.isalpha():
letters += 1
elif char.isspace():
spaces += 1
else:
others += 1
print("输入字符中包含:")
print("数字:{} 个".format(digits))
print("英文字母:{} 个".format(letters))
print("空格:{} 个".format(spaces))
print("其他字符:{} 个".format(others))
```
希望这可以帮助你!还有什么问题吗?
阅读全文