Computer Science
Function range(3) is equivalent to :
- range(1, 3)
- range(0, 3)
- range(0, 3, 1)
- range(1, 3, 0)
Python Control Flow
40 Likes
Answer
range(0, 3)
range(0, 3, 1)
Answered By
10 Likes
Related Questions
Which of the following statement(s) will terminate the whole loop and proceed to the statement following the loop ?
Which of the following statement(s) will terminate only the current pass of the loop and proceed with the next iteration of the loop?
Function range(3) will yield an iteratable sequence like
Function range(0, 5, 2) will yield on iterable sequence like