| Name | break |
|---|---|
| Examples |
for i in range(5):
if i == 2:
break
print(i) # Prints 2
|
| Description | Ends the execution of a structure such as for, or while and jumps to the next statement after. |
| Syntax | for i in xrange(10): statements if (condition): break while (i < 10): statements if (condition): break |
| Related |
for while |
Updated on Mon Sep 21 15:53:24 2020.
If you see any errors or have comments, please let us know.
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License