Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Mis prinditakse konsooli, kui järgnev koodijupp tööle panna?
a = [1, 3, 4]b = aa.insert(1, 2)print(b)
a = [1, 3, 4]
b = a
a.insert(1, 2)
print(b)
[2, 1, 3, 4]
[1, 1, 3, 4]
[1, 3, 4]
[1, 3, 1, 4]
[1, 2, 3, 4]
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!