如何统计字符串中小写字母的个数?
时间: 2024-06-13 15:06:32 浏览: 62
统计一个由小写英文字母组成的字符串中各个小写英文字母出现的数量
可以使用Python内置函数islower()来判断一个字符是否为小写字母,然后遍历字符串,统计小写字母的个数即可。以下是Python代码示例:
```python
def count_lower(s):
count = 0
for c in s:
if c.islower():
count += 1
return count
s = "Hello, World! This is a Test String."
n = count_lower(s)
print("The number of lowercase letters is:", n) # 输出:The number of lowercase letters is: 18
```
阅读全文