编写程序输入字符串分别统计其中大写字母小写字母和数字字符的个数
时间: 2024-01-25 20:04:22 浏览: 111
统计字符串中字母和数字个数
好的,以下是Python的代码实现:
```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)
```
运行程序后,输入任意字符串,即可得到该字符串中大写字母、小写字母和数字字符的个数。
阅读全文