Computer Science, asked by hchhabra701, 8 months ago

28.Convert the following while loops to the equivalent for loops 1. i=25 while i>=5: print("Indian Flag") i-=3​

Answers

Answered by gaganadithyareddy9
0

Answer:

Hey! This is in python..

for i in range(7):

   print("Indian Flag")

Similar questions