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.
break
continue
pass
Lets see one by one.