你可以使用Python的內(nèi)置方法islower()
和count()
來統(tǒng)計(jì)字符串中小寫字母的個(gè)數(shù)。下面是一個(gè)示例代碼:
def count_lowercase(string):
count = 0
for char in string:
if char.islower():
count += 1
return count
# 示例用法
string = "Hello World"
lowercase_count = count_lowercase(string)
print(lowercase_count)
運(yùn)行這段代碼,輸出結(jié)果為:
8
這表示字符串中包含8個(gè)小寫字母。