Skip to content
C

Vowel Counter

Easypython

Count how many vowels (a, e, i, o, u) appear in a sentence, counting both uppercase and lowercase.

Approach: loop through every character in the sentence and check (case-insensitively) whether it's one of the five vowels.

Input: One line: a sentence.

Output: One line: Vowel count: <count>

Input (stdin)

Output

Run your code to see output here...