idle 输入一行字符,分别统计出其中英文字母、空格、数字及其他字符的个数。
时间: 2023-11-25 17:56:52 浏览: 78
甲鱼python课后题答案与解析
可以使用 Python 的字符串方法 isalpha()、isspace()、isdigit() 来判断每个字符的类型,然后累加计数器即可。
以下是示例代码:
```python
s = input("请输入一行字符:")
alpha_count = 0
space_count = 0
digit_count = 0
other_count = 0
for c in s:
if c.isalpha():
alpha_count += 1
elif c.isspace():
space_count += 1
elif c.isdigit():
digit_count += 1
else:
other_count += 1
print("英文字母个数:", alpha_count)
print("空格个数:", space_count)
print("数字个数:", digit_count)
print("其他字符个数:", other_count)
```
例如输入 "Hello World! 123",输出结果为:
```
英文字母个数: 10
空格个数: 2
数字个数: 3
其他字符个数: 1
```
阅读全文