Given a string, find the count of elements that are not vowels.
str=input("Please enter a string as you wish: ");
vowels=0
consonants=0
for i in str:
if(i == 'a'or i == 'e'or i == 'i'or i == 'o'or i == 'u' or
i == 'A'or i == 'E'or i == 'I'or i == 'O'or i == 'U' ):
vowels=vowels+1;#vowel counter is incremented by 1
else:
consonants=consonants+1;
print("\nThe number of not vowels:",consonants);
#This coe considered by expert Umedjon Ulmasov
Comments
Leave a comment