KwickClips Python · 42 sec · free
Which one ends the loop?
Short answer. break.
Which one skips a round?
continue.
Trace: range(1, 6)
| num | if num == 3 | Prints |
|---|---|---|
| 1, 2 | no | 1 2 |
| 3: break | yes | loop ends |
| 3: continue | yes | skips 3 |
| 4, 5 | no | 4 5 (continue) |
Remember
| break: leave the loop |
| continue: skip one round |
One ends the loop, one does not. Which? Loop num over one to five. One and two print. Break at three ends the loop. Continue at three skips only three. Four and five still print. Break leaves the loop. Continue skips one round.
This clip is from the full lesson: while Loop, break and continue — 8 minutes, with the tables, the quick answers and the whole lesson in text.
Useful for: CBSE Class 10 Computer Applications (165), CBSE Class 11 Computer Science (083), CBSE Class 11 Computer Science Essentials (083), CBSE Class 11 Informatics Practices (065)
More KwickClips from this lesson
Voice-over is AI-generated; the script is written and checked by Kajal Ma'am. Confirm anything you plan around against your official board document. We never ask for a password or an OTP.




