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