python计算字符串中小写字母的数量
时间: 2023-04-26 20:02:51 浏览: 558
计算字符串中字符个数
可以使用 Python 的内置函数 islower() 和 count() 来计算字符串中小写字母的数量。
示例代码:
```
string = "Hello World"
lower_count = sum(1 for c in string if c.islower())
print(lower_count)
```
也可以使用 re.findall()
```
import re
string = "Hello World"
lower_count = len(re.findall(r'[a-z]',string))
print(lower_count)
```
上面的代码将输出 3,因为字符串 "Hello World" 中小写字母 "e", "o", "r" 共有 3 个。
阅读全文