Kevin Tiller

Generation

code to explanationSat, 22 Apr 2023

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.

Want to kickstart your project?Use the new AI Studio to create your code