python统计字符串中的所有小写字母的个数
时间: 2024-03-20 22:43:15 浏览: 52
Python大作业之jmu-java&python-统计字符个数.txt
可以使用 Python 中的 `islower()` 方法判断一个字符是否为小写字母,并使用循环遍历字符串中的每个字符进行统计。以下是代码示例:
```python
string = "Hello, World! This is a test string."
count = 0
for char in string:
if char.islower():
count += 1
print("Number of lowercase letters:", count)
```
输出结果为:
```
Number of lowercase letters: 19
```
其中,`count` 变量记录了字符串中的小写字母个数。
阅读全文