Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
[Python] Який результат буде отримано наступною функцією range():
for num in range(2,-5,-1): print(num, end=", ")
2, 1, 0, -1, -2, -3, -4
2, 1, 0, -1, -2
2, 1, 0
2, 1, 0, -1, -2, -3, -4, -5
5, 4, 3, 2, 1, 0, -1, -2, -3, -4, -5
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!