Skip to content

Break and Continue

for item in items:
    if item == target:
        break       # Exit loop
    if should_skip(item):
        continue    # Skip to next iteration

Implementation - ✅ Native - Direct mapping.