dict = {"Fri": 20, "Thu": 6, "Sat": 1} dict["Thu"] = 13 dict["Sat"] = 2 dict["Sun"] = 9
The dictionary is set up with the keys being the day of the week and the value being the number of calls that day. The number of calls for Thursday and Saturday are changed. The number of calls for Sunday is added to the dictionary.