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