vowel = 0
word = input("Please enter a word: ")
for char in word:
if char in ['a', 'e', 'i', 'o', 'u']:

vowel += 1
print("Number of vowels are: " + str(vowel) )

How do you feel about this?

Thanks for helping me in classs