Contact: aviboots(AT)netvision.net.il
41,389 questions
53,935 answers
573 users
s = "Python programming language" s = s.lower() vowel_counts = {} for vowel in "aeiou": count = s.count(vowel) vowel_counts[vowel] = count print(vowel_counts) ''' run: {'a': 3, 'e': 1, 'i': 1, 'o': 2, 'u': 1} '''