# 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 = "aeiou" # get user-supplied words reply = input( 'Enter the name of a doll: ' ) print() # convert reply into a list of lowercase 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 and # then report it # determine vowel usage # report on the word # report the total number of vowels seen across all words print( nbr_vowels_seen)