Categories: Python

break statement in Python language

break statement in Python language

In this tutorial, you will learn how vto use the break  statement and how to control flow of the loop  in Python .

break  can be used in both “while” and “for loop“. It controls the flow of the loops(for loop , while loop) and is used to terminate the control of loop.

Syntax

break;

flow diagram of break in python

break flow diagram

How to work break in python for loop

break syntax

How to work break in python while loop

break syntax

for  loop with break in Python

Program 1

break
When the above code is executed, The following output is displayed
1
2
3
4
End of the loop
At the above program, when val == 5, break statement is executed and the control of the loop exits from execution.
Program 2
When the above code is executed, The following output is displayed

While loop with break in Python

Program 1

When the above code is executed, The following output is displayed

1
2
3
4
At above program, when i== 5, break statement is executed and control of the loop exits from execution.

Program 2

When the above code is executed, The following output is displayed

 

Similar post

for loop with pass break continue statements

while loop with pass break continue statements

Continue in C Language

Continue in Python

Pass statement in Python

Break in C Language

Karmehavannan

Recent Posts

Multiply two numbers in Java using scanner| 5 different ways

Multiply two numbers in Java using scanner| 5 different ways In this article, we will…

3 months ago

5 different ways to Divide two numbers in Java using scanner

5 Different ways to Divide two numbers in Java using scanner In this article, we…

3 months ago

Learn 8 Ways to Subtract Two Numbers Using Methods in Java

Learn 8 Ways to Subtract Two Numbers Using Methods in Java In this article, we…

4 months ago

10 ways to subtract two numbers in Java

10 ways to subtract two numbers in Java In this article, we will discuss the…

4 months ago

Java Code Examples – Multiply Two Numbers in 5 Easy Ways

Java Code Examples – Multiply Two Numbers in 5 Easy Ways In this article, we…

4 months ago

How to Divide two numbers in Java| 5 different ways

How to Divide two numbers in Java| 5 different ways In this article, we will…

4 months ago

This website uses cookies.