first = [1, 2, 3] second = [4, 5, 6] combined = [*first, "a", *second] first = {"x": 1} second = {"y": 2} combined = {**first, **second}