# Purpose: input manipulation. report the number of vowels per word for # for a user-specified list of words. also report the total number # of vowels seen overall VOWELS = "aeiouAEIOU" # get user-supplied words reply = input( 'Enter words: ' ) print() # convert reply into a list of words words = ... # keep track of the number of vowels seen across all words (so far) nbr_vowels_seen = ... # examine the words one by one and report on its vowel usage for word in words : # word is the iterator # each iteration need to determine the current word's # vowel usage # determine vowel usage nbr_vowels_in_word = ... # report on the word print( nbr_vowels_in_word, 'vowel(s) in', word ) # report the total number of vowels seen across all words print( nbr_vowels_seen)