Count Vowels
Easy 
When given a string, count the number of vowels in the string. Do not count y as a vowel.
Examples:
Input: Hello, World! Output: 3
Input: My name is Bob Output: 4
Hint 1
Use a for loop to loop through each item of the list
Hint 2
Check if the letter is a vowel
Hint 3
If the letter is a vowel, add 1 to a variable. Then, at the end, return the variable.
Test Cases
You haven't run your program yet.
×
Exercise Submitted!
Count Vowels