用Python计算字符串中小写字母数量
时间: 2024-04-20 10:06:45 浏览: 88
通过python检测字符串的字母
好的,你可以使用Python中的islower()函数来检查字符串中每个字符是否为小写字母,然后计数小写字母的个数,以下是示例代码:
```python
str = "Hello, World! This is an Example String."
count = 0
for char in str:
if char.islower():
count += 1
print("字符串中小写字母数量为:", count)
```
执行以上代码后,输出结果为:字符串中小写字母数量为: 22
阅读全文