Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Count Vowels by mountian712
def count_vowels(text: str) -> int:
vowels = ["a","e","i","o","u","A","E","I","O","U"]
count = 0
for letters in text:
if letters in vowels:
count += 1
return count
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!")
Nov. 17, 2023
Comments: