用python编写代码输入一串字符串,分别统计出其中字母,数字和其他字符的个数。
时间: 2024-05-05 16:17:43 浏览: 75
六. Python学习笔记.2
这是一个技术问题,可以回答。以下是Python代码:
```python
str = input("请输入字符串:")
alpha_count = 0
digit_count = 0
other_count = 0
for i in str:
if i.isalpha():
alpha_count += 1
elif i.isdigit():
digit_count += 1
else:
other_count += 1
print("字母个数为:", alpha_count)
print("数字个数为:", digit_count)
print("其他字符个数为:", other_count)
```
阅读全文