def concat_dicts(d1, d2, d3): dc = dict() for key, value in d1.items(): dc[key] = value for key, value in d2.items(): dc[key] = value for key, value in d3.items(): dc[key] = value return dc print("Prac 5b) Program concatenate dictionaries: ") d1 = {1 : 10, 2 : 20} d2 = {3 : 30, 4 : 40} d3 = {5 : 50, 6 : 60} print(f"First List: {d1}.") print(f"Second List: {d2}.") print(f"Third List: {d3}.") print(f"Final List: {concat_dicts(d1, d2, d3)}.")