Break and Continue in Python

Break statement:

A break statement is a jump statement that terminates the execution of a loop and the control is transferred to resume normal execution after the body of the loop. 

Flow chart:

Example code for break statement:-

Code:

Python Code

for i in range(1, 10):
	if i == 5:
    	break
	else:
    	print(i, end=" ")

Output: 1 2 3 4

Explanation: In the above code, the for loop will iterate 10 times, but as soon as the value of i reaches 5, the for loop is terminated, because of the break statement.

Note:- If a break statement is presented in a nested loop it will terminate only the inner loop in which the break statement is presented.

Continue statement:

The continue statement works quite similarly to the break statement. Instead of terminating the loop (break statement), the continue statement forces the loop to continue or execute the next iteration. When the continue statement is executed in the loop, the code inside the loop following the continue statement will be skipped and the next iteration of the loop will begin.

Flow chart:

Problem Statement: print numbers from 1 to 10 except 5 using continue statement in Python.

Code:

Python Code

for i in range(1, 10):
	if i == 5:
    	continue
	else:
    	print(i, end=" ")

Output:- 1 2 3 4 6 7 8 9 10

Explanation:- In the above program, the loop will iterate 10 times but, if i reach 6, then the control is transferred to for loop, because of the continue statement.

Note:- Continue statement only skips the current iteration but the break statement will terminate the entire loop.

Special thanks to JAIGANESH R S for contributing to this article on takeUforward. If you also wish to share your knowledge with the takeUforward fam, please check out this article