Day 7 Puzzle
Fix the function so that
solve()
counts the vowels in the string.
def solve(): text = "hello" vowels = ['a', 'e', 'i', 'o', 'u'] return sum(c in vowels for c in text)
Run
🎉 Your indentation is crying for help, but okay.