While Loop 

A while loop repeats a block of code as long as a specific condition remains True 

Control statements:

break: Instantly exits (stops) the loop entirely.

continue: Skips the current step and jumps straight to the next iteration.