Question 1

Consider the following dictionary:

{ "The Bodyguard":"1992", "Saturday Night Fever":"1977"}

select the values


Question 2

The variable release_year_dict is a Python Dictionary, what is the result of applying the following method: release_year_dict.values() ?


Question 3

What is wrong with the following dictionary: {'a':1, 'a':2} ?