Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the output of the following range() function
range()
for num in range(2,-5,-1): print(num, end=", ")
for num in range(2,-5,-1):
print(num, end=", ")
2, 1, 0
2, 1, 0, -1, -2, -3, -4, -5
2, 1, 0, -1, -2, -3, -4
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!