Return value of the Python range() function
Question
:
What does the "range(1, 5)" function return?
[1, 2, 3, 4, 5]
[1, 2, 3, 4]
(1, 2, 3, 4, 5)
(1, 2, 3, 4)
Answer
:
B - is the correct answer