CBSE BOARD XII, asked by Scadle, 7 months ago

Rewrite the following while loop into for loop:

i = 10

while i<250:

print i

i = i+50​

Answers

Answered by TanishqSingh777
0

Answer:

for i in range(10, 250, 50):

print i

Similar questions