''' Purpose: determine the number of vowels in user-specified text ''' # HELPFUL CONSTANT VOWELS = 'aeiou' # get the input text = input( 'Enter text: ' ) # get a cleaned up version (canonical) of the text -- get a stripped, # lower case version ... # determine and report the number of occurrences of each vowel ...