Computer Science, asked by abhinavsingh7124, 3 months ago

Sequence of range( 5, -4, -2) is ____​

Answers

Answered by allysia
1

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.

Similar questions