Count the vowels and consonants in string without including spaces.
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
elif i == ' ':
consonants=consonants;
else:
consonants = consonants + 1;
#consonant counter is incremented by 1
print("The number of vowels:",vowels);
print("\nThe number of consonant:",consonants);
Please enter a string as you wish: I am a boy
The number of vowels: 4
The number of consonant: 3
Comments
Leave a comment