Computer Science, asked by Anonymous, 2 months ago

___ is the output of the following program for in range(5,20,5)​

Answers

Answered by mj8303987
0

Answer:

5 10 15 20

Explanation:

in range(starting_value, ending_value, step_value)

it will start from 5

jump to 5th number from previous till 20

which will make it 5, 10, 15, 20

Similar questions