What does copy.deepcopy do when copying a tuple that contains only immutable elements?import copy t = (1, 2, 3) print(copy.deepcopy(t) is t)