Contact: aviboots(AT)netvision.net.il
39,939 questions
51,876 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} '''