''' Purpose: determine the length and number of vowels of a user-specified word ''' # HELPFUL CONSTANT VOWELS = 'aeiou' # get the input reply = input( 'Enter a word: ' ) # clean it up ... # determine and report its length ... # determine and report the total of the number of occurrences of each of the vowels ...