第3章-10 统计大写辅音字母 (15 分)
英文辅音字母是除A
、E
、I
、O
、U
以外的字母。本题要求编写程序,统计给定字符串中大写辅音字母的个数。
输入格式:
输入在一行中给出一个不超过80个字符、并以回车结束的字符串。
输出格式:
输出在一行中给出字符串中大写辅音字母的个数。
输入样例:
HELLO World!
输出样例:
4
str1 = input()
s = "AEIOU"
count = 0
for item in str1:
if(item.isupper()==1) and item not in s:
count += 1
print(count)
来源:CSDN
作者:chen_zan_yu_
链接:https://blog.csdn.net/chen_zan_yu_/article/details/103357238