multiple choice\nyou used range in definite loops earlier in the course. the output of the range function is…

multiple choice\nyou used range in definite loops earlier in the course. the output of the range function is a sequence, which is a list of integers.\nrange(3) creates which sequence of numbers?\n1, 2, 3, 4\n0, 1, 2, 3\n0, 1, 2\n1, 2, 3
Answer
Brief Explanations:
In Python, the range(n) function generates a sequence of integers starting from 0 and going up to but not including n. So for range(3), it starts at 0 and goes up to 2.
Answer:
[0, 1, 2]