Computer Science, asked by jaya200678, 5 months ago

find the output of the following program segments. (a) for i in range (20,30,2):.
print (i)

Answers

Answered by aswinasok1245
4

Answer:

20

22

24

26

28

Explanation:

Prints each value from 20 to 30 at an interval of 2.

Similar questions