Write a function printVowelStatsinputString that calculates
Write a function printVowelStats(inputString) that calculates and prints the number of occurrences of each vowel (consider the vowels to be only: a/A, e/E, i/I, o/O, and u/U) in the string and also the total number of non-vowels. NOTE: You must use a loop to count the vowel occurrences. You many not use the Python\'s built-in count function.
should print:
Solution
#this can be done by taking individual counting variables for each vowel mentioned and incrementing them when a #vowel is encountered.
#Code:
