Rewrite the following while loop into for loop:
i = 10
while i<250:
print i
i = i+50
Answers
Answered by
0
Answer:
for i in range(10, 250, 50):
print i
Similar questions
Computer Science,
5 months ago
Social Sciences,
5 months ago
Chemistry,
11 months ago
Math,
11 months ago
Science,
1 year ago