输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数 python
时间: 2023-11-15 16:06:36 浏览: 149
python 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数 (示例)
5星 · 资源好评率100%
好的,以下是 Python 代码实现:
```python
s = input("请输入一行字符:")
letters = 0
space = 0
digit = 0
others = 0
for c in s:
if c.isalpha():
letters += 1
elif c.isspace():
space += 1
elif c.isdigit():
digit += 1
else:
others += 1
print("字母个数:", letters)
print("空格个数:", space)
print("数字个数:", digit)
print("其他字符个数:", others)
```
输入一行字符后,程序遍历每个字符,通过 `isalpha()`、`isspace()` 和 `isdigit()` 方法分别判断该字符是否为字母、空格或数字,否则就是其他字符。最后输出每种字符的个数。
阅读全文