15.Rewrite the following code fragment using while loop. for i in range(1,10): if i%3==0: print(i)
Answers
Answered by
0
Answer:
i = 3
while i <= 10:
print (i)
i += 3
Similar questions