Python Theory
Break :
What is the use of break and continue in python?
| Syntax |
|---|
| break |
| Example |
|---|
| # break statement inside the loop for val in "skillpundit": if val == "i": break print(val) print("The end ") |
| Output |
|---|
|
|
| Syntax |
|---|
| break |
| Example |
|---|
| # break statement inside the loop for val in "skillpundit": if val == "i": break print(val) print("The end ") |
| Output |
|---|
|
|