continueEasy Playground

Skips the rest of the current loop iteration and moves to the next

Python Playground
Output
Click "Run" to execute your code

continue skips the rest of the current iteration and jumps to the next one. The loop itself keeps running.

Challenge

Try modifying the code above to explore different behaviors. Can you extend the example to handle a new use case?