WHILE LOOP➰

i = 1
while i <= 10:
print(i)
i += 1
print("done with loop")

Comments