pyhton分别统计出其中的英文字母、空格、数字和其他字
时间: 2024-06-12 20:10:43 浏览: 18
python 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数 (示例)
5星 · 资源好评率100%
好的,以下是代码实现:
```python
string = "Hello World! 123"
letters = 0
spaces = 0
digits = 0
others = 0
for char in string:
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)
```
输出结果为:
```
英文字母数量: 10
空格数量: 2
数字数量: 3
其他字符数量: 2
```
阅读全文