which loop ise use to break the current execution and go back to loop code example
Example: break function python
if( x > 3):
print('X is greater than 3')
else:
break
if( x > 3):
print('X is greater than 3')
else:
break