Ask a New Question
Search
Questions and answers by
pasa
Answers (2)
hagoo
> vowels = "aeiou" > [x for x in "azcbobobegghakl" if x in vowels] ['e', 'e', 'i', 'a'] > len([x for x in "azcbobobegghakl" if x in vowels]) 4