Computer Science, asked by Anonymous, 3 months ago

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

Answers

Answered by allysia
1

Complete program:

# ___ is the output of the following program

for i in range(5,20,5)​:

       print i

Output:

5

10

15

Explanation:

range(5,20,5) translates to  the loop begins with i =5 and runs as long as i<20 with an increment of 5 each time the loop runs.

Similar questions