Q. What does the `range(5)` function return?
β
Correct Answer: (C)
A range object from 0 to 4
Explanation: `range(5)` creates a range from 0 up to, but not including, 5.