Python Challenge · Learn Python 3
Count the Vowels
Read a lowercase word and print how many vowels (a, e, i, o, u) it contains.
Example 1
Input
education
Expected Output
5
solution.py
Run the examples to test your code, then Submit to run all hidden tests.