We're a place where coders share, stay up-to-date and grow their careers.
My python solution!
def count_vowels(word): return len(l for l in word if l in "aeiou")
My python solution!