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

Share
Published by
Karmehavannan

Recent Posts

Subtract two numbers using method overriding

Subtract two numbers using method overriding   Program 1

3 months ago

PHP Star triangle Pattern program

PHP Star triangle Pattern program Here's a simple Java program that demonstrates how to print…

3 months ago

Using function or method to Write temperature conversion : Fahrenheit into Celsius

Using Function or Method to Write to temperature conversion: Fahrenheit into Celsius In this article,…

1 year ago

Function or method:temperature conversion from Fahrenheit into Celsius – Entered by user

Function or method of temperature conversion from Fahrenheit into Celsius In this article, we will…

1 year ago

Write temperature conversion program: Fahrenheit into Celsius

Write temperature conversion program: from Fahrenheit to Celsius In this article, we will discuss the…

1 year ago

How to write a program to convert Fahrenheit into Celsius

How to write a program to convert Fahrenheit into Celsius In this article, we will…

1 year ago

This website uses cookies.