Refresh

This website www.w3schools.blog/python-break is currently offline. Cloudflare\'s Always Online™ shows a snapshot of this web page from the Internet Archive\'s Wayback Machine. To check for the live version, click Refresh.

Python break

Python Break:

Python break statement is used to break the execution of current loop in between the loop.

Break statement breaks the continuity of the containing loop only, i.e, external loops will not get affected because of Break statement in inner loop.

Syntax:

loop/conditions statements:

statements

break

Example:
//pythonexample.py

print "Extracting ALPHA from word ALPHANUMERIC:"
for x in "ALPHANUMERIC":
 
   if x == "N":
       break
   print x

Output: