Glossary coding Term Page

break / continue

Keywords that stop a loop entirely or skip the current iteration

break-continue #coding#python
Korean version

Related Concepts

Core Idea

break / continue is Keywords that stop a loop entirely or skip the current iteration. It usually makes the most sense alongside Control flow, Iterable, enumerate.

Why It Matters Here

Mathbong reuses this term across python posts as shared vocabulary.

Posts Mentioning This Concept