InterviewSolution
Saved Bookmarks
| 1. |
Sequence of range( 5, -4, -2) is ____ |
|
Answer» [5,3,1,-1,-3]Explanation:range(a,b,C) REPRESENTS a sequence starting from a ending at b-1 and at a gp of c NUMBER. You can check it yourself using the following program:for i in range(5,-4,-2): print(i) The numbers printed will be in the sequence. |
|