Home / Code-challenges / Debug Count Vowels
def count_vowels(s): vowels = "aeiou" count = 0 if char in vowels: for char in s: count += 1 return count print(count_vowels("hello"))
Python
Debugging