// blog

Articles

// Control Flow
break — the emergency exit

The problem...
Your loop is running. It finds what it was looking for. But it keeps going anyway — checking every item that's left, doing work that doesn't need to be done.…

03 May 2026 1 min read files [1] comments [0] 21 views
// Control Flow
The end of the loop might not be the end

The problem...
Your loop searched through every item. Didn't find what it was looking for. Now what?
You need to know if the loop completed without interruption — or if so…

03 May 2026 1 min read files [1] comments [0] 21 views
// Control Flow
FOR IF Mini Project — Password Strength Checker

The problem...
Passwords like "abc123" get cracked in seconds. "P@ssw0rd!" takes considerably longer.
The difference? Variety. A strong password has uppercase, lowercase, digits…

03 May 2026 2 min read files [1] comments [0] 23 views
// Control Flow
FOR IF Mini Project — Pig Latin

The problem...
You've seen encryption. You've seen formatting. Now something different.
Pig Latin is a word game. Simple rules. Surprising output. And a perfect job for everythi…

03 May 2026 1 min read files [1] comments [0] 22 views
// Control Flow
Common PASS/CONTINUE/BREAK Mistakes

The problem...
Your loop runs. But it stops too early. Or it never stops. Or it skips everything instead of something.
These are the mistakes almost every beginner makes with pa…

03 May 2026 2 min read files [1] comments [0] 23 views
// Control Flow
pass / continue / break — The Full Picture

The idea!
You've covered pass, continue, break, and for...else.
This is your reference. Everything in one place.
Come back here whenever you need a reminder.
pass — the …

03 May 2026 1 min read files [1] comments [0] 22 views