Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Practice

Instruction

Amazing! Three more exercises to go in this course.

Exercise

As you can see, we've prepared the test_results variable for you. Your task is to iterate over the values of the dictionary and print all names of people who received less points than 45.

Stuck? Here's a hint!

To iterate over key-value pairs in a dictionary, you can use the for loop and the .items() function:

for key, value in dictionary.items():
  ...