Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що виведе наступний код:
tpl = (1, 2, [3, 4])
tpl[2].append(5)
print(tpl)
Error
(1, 2, [3, 4])
(1, 2, [3, 4, 5])
(1, 2, [3, 4], 5)
(1, 2, [3, 4], [5])
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!