Write a python program that will take a string input from the user. Your task is to count the number of vowels and consonants in the string. Using try, if the number of vowels is greater than or equal to the number of consonants than raise a runtime error. Print 'Number of vowels greater/equal to consonants. Please paraphrase.'. Otherwise, print 'The sentence will work.'. Note: a,e,i,o,u are called vowels and all the other 21 english alphabets are consonants. ============================= Example 1: Input: 'his age is 10' Output: Number of vowels greater/equal to consonants. Please paraphrase. ================= Example 2: Input: 'he is 10 years old' Output: The sentence will work. What's the solution of this in python programming
Write a python program that will take a string input from the user. Your task is to count the number of vowels and consonants in the string.
Using try, if the number of vowels is greater than or equal to the number of consonants than raise a runtime error. Print 'Number of vowels greater/equal to consonants. Please paraphrase.'.
Otherwise, print 'The sentence will work.'.
Note: a,e,i,o,u are called vowels and all the other 21 english alphabets are consonants.
=============================
Example 1:
Input:
'his age is 10'
Output:
Number of vowels greater/equal to consonants. Please paraphrase.
=================
Example 2:
Input:
'he is 10 years old'
Output:
The sentence will work.
What's the solution of this in python
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images