Updated April 15, 2023
Introduction to Break Statement in Python
Break statement in Python is used as a loop or control statement in order to manage the code control flow direction in the execution order. The control statements commonly used in python programming are Break, Continue and Pass, where Break is used for ending the loop and moving the execution control to the next step of the code, Continue is used for skipping the specific steps and continuing the code execution, and finally, Pass is used for passing some definite code statements.
Loop Control Statements
Python supports below loop control statements:
- Break: Terminated the flow of the loop statement and executes the next statement outside the loop.
- Continue: It is used when we need to skip the execution of the remainder of statements in the loop and continue from the start.
- Pass: It is used when we need some statements syntactically but does not want to put any statements.
This statement is used to terminate the flow of execution of loops in a program. The flow can also be diverted to different statements or different loop. A break statement can be used in the situation where we need to exit a loop (while as well as for loop)when one of the events get triggered when a BREAK statement gets triggered in an inner loop, the flow of execution if diverted to the next statement in the outer loop.
Below is the sample old code style for breakout functionality:
Code:
def prod():
for i in range(10):
for j in range(10):
print (i*j)
if i*j>50:
return
# instead we can try below code directly instead of calling function
for i in range(10);
for j in range(10):
print i*j
if i*j>50:
break
else:
continue # this will be executed if the loop ended normally (no break)
break # this will be executed if 'continue' was skipped (break)
Analysis:
In the above code, we are defining a function for returning the product of numbers. And if the product of two numbers is greater than 50, then end. Instead of using return in previous old logic, we can use a break and continue indirect code rather than defining a function and calling it. Thanks to the breaking statement feature, which easily out this breakout work from the loop. It terminates the loop and continues with the execution of further statements. Suppose we consider an example of searching for an element in an array, where we run a loop for parsing and then matching with the search element. Once the element is found, we can exit the loop with a message as “element is found” using the break statement. Also, in the nested loop, we can use the break statement to stop the innermost loop’s execution by specifying any conditions and then continuing with the outer loop execution.
Syntax:
break
We need to just write ‘break’ after the condition that should be true to terminate the flow of execution.
How do you Write a Break Statement?
The Break Statement is a simple statement that holds the power of terminating the normal flow of the group of statements. Let us think of a simple scenario of a game, say, subway surfer. Its working is not that much difficult. When one person starts the game, it enters a long and never-ending infinite loop. While moving in a loop, the objects being displayed are continuously changing. At every stage, it takes your input according to the objects being displayed, e.g., if currently, a bridge comes which you need to cross. Now every move you will make will be checked against various conditions or checks that have been applied .in the game.
There is also one crucial check in all these checks that decides if u r still in the game or not. e.g., u need to jump, and u don’t. Then the quit condition fails, and the loop gets broken, and u r out of the game. This quitting work is done by the ‘break’ statement. It becomes active when the check or condition mentioned becomes true.
For writing a break statement. Following things are needed:
1. Quit or End condition: It is also known as hault condition, which must be satisfied for the break statement’s execution.
Code:
a=['a','b','1']
for i in a:
if (i.isnumeric()):
print (a)
print ('Found a number in the list')
Output:
Explanation: The above code prints all the alphabets present on the list. In case it finds the first numeric in the list, break statement gets executed and break the loop and print ‘Found a number in the list’ ‘
2. The loop: The break statement is always used in a loop. It is meaningless in case we don’t use any loop Because it is meant to break the repeated sequence of the statement, which is only present in a loop.
Flow Diagram for Break Statement in Python
Below is the flow of how the break statement works in a program.
Functionality
The working of break statement in the loop is shown below in for loop and while loop :
The program continues with the normal execution of the program. In case it faces a conditional code while executing a loop, and the output of the condition is true, then the flow redirected from its normal flow to the first next statement after the loop. In case the condition happens to be false, the loop does execute in the same manner.
Loops for Executing Iterative Statements
Python allows below loops for executing Iterative statements in a program.
1. WHILE LOOP
The while loop executes the group of statements in sequence continuously until a stop condition is not fulfilled.
Syntax:
while expression(s):
statements
E.g., In the below program, there is an infinite loop that gets always triggered as while(1) is an always true condition. But we have declared a break statement that will be executed when the condition given in the “IF” statement will be true. And after that, the just next statement after the loop will get executed.
Code:
i=1
while(1):
print ("We are in the loop")
if(i>10):
print ("Here break statement works")
break
I=i+1
print (I)
print ("I am out of the loop")
Output:
2. FOR LOOP
A FOR loop is used to iterate over a sequence like range, list, tuple, dictionary or string.
Syntax:
for i in [sequence]:
Statements.
Code:
a=[ 'A','B','C','D','E','F','G','H']
for i in a:
print ("We are in loop with")
print (i)
if i=='G':
print ("Here Break statement is triggered")
break
print ("We are outside the loop")
Output:
Examples of Break Statement
Below are the examples of break Statement:
Example #1
In the below example, we are trying to search 8 from the array of numbers defined below using for loop.
Code:
# program to search 8 from array of numbers
for num in [1, 19, 8, 0, 9, 30, 29]:
print(num)
# if number is 8 print message as found and break the loop
if(num==8):
print("number 8 is found")
break
Output:
Analysis:
In the above program, we have an array of numbers that we have parsed using the for a loop. Then we have included an if condition where we are checking if the “num” is 8 then break. Print the message else, continue with the loop. When the “num” is 8, it satisfies the condition, and the break statement is executed.
Example #2
In the below program, we are finding the sum of the first five integers using break-in for loop :
Code:
#Declare the tuple num , sum temporary variable, and the counter
num = (1, 2, 3, 4, 5, 6, 7, 8, 9)
sum = 0
counter = 0
# parsing the tuple
for i in num:
sum = sum + i
counter = counter + 1
if counter == 5:
break
print("Sum of the first",counter)
print("integers is: ",sum)
Output:
Analysis:
In the above program, we have a tuple declared as “num”, a variable to sum “sum”, and a counter variable “counter”. Using for loop, we are parsing the tuple, i.e. for each element, we add to the “sum” and increment the “counter”. If the counter reaches 5, we break the loop. Finally, we are calculating the sum of the first five integers.
Example #3
In the below example, we are trying to search 9 using the while loop.
Code:
# program to search 9
i = 0;
# While condition
while 1:
print(i)
i=i+1;
if i == 9:
# break if 9 is found
break;
print("out of loop");
Output:
Analysis:
In the above program, we are performing search functionality using a while loop in python. By looping on the integers, we have declared a temporary variable I, which we are incrementing by one on each iteration. Inside the loop, we are checking if the “i” value is 9, then the break statement is executed. Finally, we output as integers from 0 to 8.
Example #4
In the below program, we are finding some of the first five integers using a while loop.
Code:
# Declare the variables sum and the counter
sum = 0
counter = 0
while(counter<10):
sum = sum + counter
counter = counter + 1
if counter == 5:
break
print("Sum of the first ",counter)
print("integers is: ", sum)
Output:
Analysis:
In the above program, we have declared the variables “sum” and the counter to increment the loop on the first 10 integers. We are running a while loop on the condition where the counter should be less than 10. Inside the loop, we are calculating the sum of the first five integers. For the same, we are declaring the condition if “counter==5”, then the break statement is executed.as a result, we get the output as the sum of the first five integers.
Example #5
In the below program, we are making use of break statement in the nested loop:
Code:
# Array of Number
num = [1, 2, 3]
# Array of Character
str = ['y' ,'x', 'z']
# outer loop
for i in num:
print("Number of items: " ,i)
for j in str:
if j == 'z':
break
print(" String of items: " ,j)
Output:
Analysis:
In the above code, we have declared an array of numbers “num” as 1,2,3 and an array of characters as y,x,z. We parse the array of numbers as the number of times we want the inner loop to be executed. Then inside the outer loop, we are looping on the array of characters. Where we are displaying all the characters other than “z” from the array. When the character is equal to “z”, the inner loop on the array of character breaks and flow continues with the outer loop. Once again, inner loop logic is initialized and executed.
Example #6
Below example is an use-case of finding first leap year from 2000 to 2005.
Code:
for year in range(2000,2005):
if year%4==0 and year%100!=0:
print("year is first leap year" ,year)
Output:
Analysis:
In the above example, we used the function range to parse through the years using for loop, and inside the loop, we are checking if the year is a leap year or not. The leap year’s condition is that year should be evenly divisible by 4, and it should not be evenly divisible by 100. If the year satisfies this condition, we break the loop using a break statement and print the year’s message as the first leap year.
Example #7
In the below example, we print all the prime numbers between the range 0 to 20:
Code:
for n in range(0, 20):
if n> 1:
for i in range(2, n):
if (n % i) == 0:
break
else:
print(n)
Output:
Analysis:
In the above code, we are running a loop on a range from 0 to 20. Then, as we know that all prime numbers are greater than 1, if the num>1, we are checking if the number has other factors. By running a loop from 2 to the num, we can check if num is divisible by any number other than 1 and itself. If so, we are giving the break statement, which will exit the flow. Else it will print the number itself.
Conclusion
The Break Statement in Python is a loop control statement that terminates the normal execution of a sequence of statements in a loop and passes it to the next statement after the current loop exits. This can be used in many loops – for, while and all kinds of nested loop.
Recommended Articles
This is a guide to Break Statement in Python. Here we have discuss a basic concept, how to break statement in python works in a program along with flow diagram and examples, respectively. You can also go through our other suggested articles to learn more –