python计算字符串中小写字母数量
时间: 2023-04-23 11:02:49 浏览: 1453
统计字符串中每个字母的个数
5星 · 资源好评率100%
可以使用Python内置函数count()来计算字符串中小写字母的数量。具体代码如下:
```python
s = "Hello, World!"
count = 0
for c in s:
if c.islower():
count += 1
print("字符串中小写字母的数量为:", count)
```
输出结果为:
```
字符串中小写字母的数量为: 8
```
阅读全文