Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Count Vowels by freeman_lex
def count_vowels(text: str) -> int:
return sum(char in "aeiou" for char in text.lower())
print("Example:")
print(count_vowels("Hello"))
# These "asserts" are used for self-checking
assert count_vowels("hello") == 2
assert count_vowels("openai") == 4
assert count_vowels("typescript") == 2
assert count_vowels("a") == 1
assert count_vowels("b") == 0
assert count_vowels("aeiou") == 5
assert count_vowels("AEIOU") == 5
assert count_vowels("The quick brown fox") == 5
assert count_vowels("Jumps over the lazy dog") == 6
assert count_vowels("") == 0
print("The mission is done! Click 'Check Solution' to earn rewards!")
Sept. 8, 2023
Comments: