While Loop
# i=0
# while 0<50:
# print(i)
# break
i=0
while i<50:
print(i)
i+=1
break
else:
print("done with all the work")
INFO
# i=0
# while 0<50:
# print(i)
# break
i=0
while i<50:
print(i)
i+=1
break
else:
print("done with all the work")