7-9 统计大写辅音字母 (15分)

7-9 统计大写辅音字母 (15分)_第1张图片

代码

s=input()
count=0
for i in range(len(s)):
    if s[i] not in ['A','E','I','O','U']:
        if s[i].isupper():
            count+=1
print(count)

你可能感兴趣的:(PTA,python)