Using a list to find occurrences in a nested dictionary
Using a list to find occurrences in a nested dictionary Question: So I have a nested dictionary: {1: {‘letter’: ‘A’, ‘is_vowel’: True, ‘point_value’: 1}, 2: {‘letter’: ‘B’, ‘is_vowel’: False, ‘point_value’: 3}, 3: {‘letter’: ‘C’, ‘is_vowel’: False, ‘point_value’: 3}, 4: {‘letter’: ‘D’, ‘is_vowel’: False, ‘point_value’: 2}, 5: {‘letter’: ‘E’, ‘is_vowel’: True, ‘point_value’: 1}, 6: {‘letter’: ‘F’, …