Computer Science, asked by kramsha2004, 9 months ago

Rewrite the following for loop into while loop
for a in range (25, 500, 25)
print a​

Answers

Answered by niranjanasathish
3

Answer:

i = 25;

while i < 500:

print(i);

i += 25;

Similar questions