AnswerBox
Python

Count Vowels

Description:
Count the number of vowels in a given string.
Python Code
def count_vowels(s):
    return sum(1 for ch in s.lower() if ch in "aeiou")

print(count_vowels("Programming is Fun"))
Expected Output
5