while loops
#Another way to loop
i = 0
while i < 80:
print(i)
i += 1
#while 0 < 50:
#print(i)
#break
#while i < 50:
##i += 2
else:
print('done with all the work')
INFO
#Another way to loop
i = 0
while i < 80:
print(i)
i += 1
#while 0 < 50:
#print(i)
#break
#while i < 50:
##i += 2
else:
print('done with all the work')