Skip to content

Commit 5655a9d

Browse files
DavidGervacmccandless
authored andcommitted
exercises table update
* new concept exercises issues * new exiting loops concept exercise issue * Fix rendering issue * applied prettier * Add exiting loops reference page * Improve exiting-loops concept * add reference * fix links * fix broken links
1 parent c5f85d8 commit 5655a9d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

reference/concepts/exiting_loops.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Exiting Loops
2+
3+
Sometimes you need to abort or otherwise modify a loop (both `while` or `for` loops). You may want your program to exit it completely or skip part of it before continuing with the next iterations. You can do these actions with [break](./keywords/break.md) and [continue](./keywords/continue.md) python's keywords.
4+
5+
See [this blog post][exiting-loop-ref] for more details.
6+
7+
[exiting-loop-ref]: https://www.tutorialspoint.com/python/python_loop_control.htm

0 commit comments

Comments
 (0)