Question 7
Consider the following snippet of code:
t1 = (1, 2, 3)
t2 = (4, 5, 6)
t3 = t1 + t2
t4 = (t1, t2)
print(t3[2:5])
print(len(t4))
print(5 in t2)
try:
t1[0] = 10
except:
t1 = t3[0]
print(t1)
Select all that apply.
The First Line of output is (3, 4, 5, 6)
The First Line of output is (3, 4, 5)
The Second Line of output is 2
The Third Line of output is True
The Fourth Line of output is 3