Python字符串大小写统计
时间: 2023-12-27 09:01:50 浏览: 77
字符串统计
Python字符串大小写统计可以使用count()函数来实现,例如:
```
text = "Hello, World!"
upper_count = text.count('H') + text.count('W')
lower_count = text.count('e') + text.count('l') + text.count('o') + text.count('r') + text.count('d')
print("大写字母个数为:", upper_count)
print("小写字母个数为:", lower_count)
```
输出结果为:
```
大写字母个数为: 2
小写字母个数为: 8
```
希望这个回答对您有帮助!
阅读全文