Python Dictionaries


What does dict equal after running this code?:

dict = {"Fri": 20, "Thu": 6, "Sat": 1}
dict["Thu"] = 13
dict["Sat"] = 2
dict["Sun"] = 9
Click the button below to check your answer.