def vowel_count(string):   vowels = ['a', 'e', 'i', 'o', 'u']   return len([i for i in string if i in vowels])

Read more of this post