Question: You are tasked with building a Python console application in Visual Studio that prompts the user to enter a sentence. From that sentence you will
You are tasked with building a Python console application in Visual Studio that prompts the user to enter a sentence. From that sentence you will arrive at and output a vowel score. The vowel score per word is calculated as follows: Has 2 or less vowels = 1 point Has 3 or more vowels = 2 points NOTE: we classify vowels as the following letters: a,e,i,o,u (case insensitive). The sentences vowel score is arrived at by adding up each words point value. For example, the sentence, computer programmers rock, gets a score of 5: computer 2 points programmers 2 points rock 1 point
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
