After this code runs, what is the state of t, and why?t = ([1], 2) try: t[0] += [3] except TypeError: pass print(t[0])