What does `copy.copy(t)` return when `t` is a tuple, and why?import copy t = ([1, 2], [3, 4]) t2 = copy.copy(t) print(t2 is t)