## This program asks the user for a word and then prints ## how many vowels this word has. word = raw_input("Please type in a word: ") count = 0 for letter in word: if letter=="a" or letter=="e" or letter=="i" or letter=="o" or letter=="u": count = count + 1 print count