11 Loop Control

We need to apply controls on a loop execution to satisfy specific condition. Loop control statements are used to control the loop execution as per specific requirement. There are three loop control statements present in python.

  1. break

  2. continue

  3. pass

Lets see one by one.