Break Statement in Python
Updated: May 18, 2020
The break statement is used to terminate the loop when a certain condition is gathering. The break statement is usually used inside a loop along with a if statement so that when a exacting condition returns true, the break statement is encountered and the loop terminates.
Syntax:
break
Flow Chart:

Example:
Program to display all the elements before number 70
for n in [11, 70, 88, 10, 90, 3, 7]:
print(n)
if(n==70):
print("The number 70 is found")
print("Terminating the loop")
break
Output:
11
70
The number 70 is found
Terminating the loop