""" Purpose: use if-else statement """ # define helpful constant VOWELS = "aeiou" # get input text and put into canonical form text = input( "Enter text: " ) text = text.strip() text = text.lower() # determine its first character first_character = ... # determine whether first character is a vowel ...