(a) Describe two different ways to remove a specific item from a Python dictionary. Compare between them.
(3 marks)
(b) The following table shows the workshop times for specific dates:
Date
Workshop times: 9:30, 10:15, 11:00, 12:30, 15:15
1/5
10/6
5/7
Write code to create a dictionary that maps each date to a list of workshop times.
(2 marks)
(c) Write code to iterate over the dictionary created in part (b) and print the workshop times for each date, separated by spaces, as follows:
1/5: 9:30 10:15, 10/6: 11:00, 5/7: 12:30 15:15