Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде виведено у результаті виконання коду
a = [1, 2, 3]
b = a.copy()
a[0] = 10
print(b)
10
[10, 2, 3]
[1, 2, 3]
помилка
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!