3.py (164B)
1 vowels = ['a','e','i','o','u'] 2 3 counter = 0 4 word = input() 5 for i in word: 6 for j in vowels: 7 if j == i: 8 counter = counter + 1 9 print(counter)