Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardPythonCPython bytecode and disSingle-choice MCQ

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])