# Helene Martin, Garfield High School # Strings and loops VOWELS = "aeiou" message = raw_input("Enter a message: ") no_vowels = "" for letter in message: if letter.lower() not in VOWELS: no_vowels += letter print("Vowels removed: " + no_vowels)