用python统计字符串中小写字母的个数的代码
时间: 2024-02-16 10:03:29 浏览: 88
统计字符串中每个字母的个数
5星 · 资源好评率100%
可以使用 Python 的内置函数 islower() 和 count() 来统计字符串中小写字母的个数,代码如下:
```
string = input("请输入字符串:")
count = 0
for char in string:
if char.islower():
count += 1
print("字符串中小写字母的个数为:", count)
```
其中,`string` 为用户输入的字符串,`count` 用于统计小写字母的个数,`for` 循环遍历字符串中的每个字符,`islower()` 函数判断字符是否为小写字母,如果是,则计数器 `count` 加 1,最后输出小写字母的个数。
阅读全文