python实现输入一个字符串,统计它包含的大写字母、小写字母、数字的个数
时间: 2024-05-14 12:14:05 浏览: 103
python实现字符串中字符分类及个数统计
5星 · 资源好评率100%
```python
s = input("请输入一个字符串:")
upper_count = 0
lower_count = 0
digit_count = 0
for c in s:
if c.isupper():
upper_count += 1
elif c.islower():
lower_count += 1
elif c.isdigit():
digit_count += 1
print("大写字母个数:", upper_count)
print("小写字母个数:", lower_count)
print("数字个数:", digit_count)
```
示例输出:
```
请输入一个字符串:Hello World 123
大写字母个数: 2
小写字母个数: 8
数字个数: 3
```
阅读全文