Answer to Question #283085 in Python for Varaprasad

Question #283085

write a program to count vowels and consonants in string


1
Expert's answer
2021-12-27T15:50:51-0500
#Python program to count vowel or consonant of the given string
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
#consonant counter is incremented by 1
print("The number of vowels:",vowels)
print("\nThe number of consonant:",consonants)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS