# Vowels.py
#
# Count the vowels in a word
vowels = "aeiou"
word = input("Please give me a word: ")
print("Your word is:", word)
word_length = len(word)
print(word, "has", word_length, "letters")
count = 0
for letter in word:
if letter in vowels:
count = count + 1
print("It has", count, "vowels")