An empty dictionary is created with the expression players = { }
Why use a dictionary rather than a list?
Ex: If a program contains a collection of anonymous student test scores, those scores should be stored in a list. However, if each score is associated with a student name, a dictionary could be used to associate student names to their score.
Other examples of associative relationships include last names and addresses, car models and price, or student ID number and university email address.