* 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
472 B
472 B
Exiting Loops
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 and continue python's keywords.
See this blog post for more details.