从键盘输入一个字符串,统计其中字母,数字,和其他字符分别的个数并输出结果
时间: 2023-06-11 22:09:46 浏览: 1757
统计字符串中字母和数字个数
下面是 Python 代码实现:
```python
s = input("请输入字符串:")
letter_count = 0
digit_count = 0
other_count = 0
for c in s:
if c.isalpha(): # 判断是否为字母
letter_count += 1
elif c.isdigit(): # 判断是否为数字
digit_count += 1
else:
other_count += 1 # 其他字符
print("字母个数:", letter_count)
print("数字个数:", digit_count)
print("其他字符个数:", other_count)
```
输入一个字符串后,程序会输出该字符串中字母、数字和其他字符的个数。
阅读全文