break
proclamation is a bounce explanation that is utilized to pass the control to the end of the circle.
At the point when break explanation is connected the control focuses to the line taking after the body of the circle , subsequently applying break proclamation makes the circle to end and controls goes to next line indicating after circle body. The following is an example.
[c]for i in [1,2,3,4,5]:
if i==4:
print "Element found"
break
print i, [/c]
Now compile the code result will be as follows.
[c]1,2,3 Element found[/c]