Comptez combien de voyelles dans une chaîne Python
def vowel_count(string):
vowels = ['a', 'e', 'i', 'o', 'u']
return len([i for i in string if i in vowels])
the real Professor Poopypants