// blog

Articles

// Control Flow
Common FOR Mistakes

The problem...
Your loop runs. But the output is wrong. Or it crashes. Or it does nothing at all.
These are the mistakes almost every beginner makes with for. At least once.
Mi…

01 May 2026 2 min read files [1] comments [0] 32 views
// Control Flow
for loops — The Full Picture

The idea!
You've covered a lot. for loops, range(), counters, enumerate(), zip().
This is your reference. Everything in one place.
Come back here whenever you need a reminder.

01 May 2026 1 min read files [1] comments [0] 32 views
// Control Flow
This One's Yours — FOR

for every article read: something new.
for every example run: a pattern recognized.
for every mistake made: a lesson that sticks.
That's not just how loops work. That's how lea…

01 May 2026 1 min read files [1] comments [0] 34 views
// Control Flow
for meets if — the most common pattern in Python

The problem...
Your loop processes every item the same way. Every time. Without exception.
But real programs don't work like that. Sometimes you need to act on some items and ig…

03 May 2026 1 min read files [1] comments [0] 21 views
// Control Flow
pass — the silent keeper

The problem...
You're writing a loop. You need the structure to exist — but you're not ready to fill it in yet.
So you leave it empty. Python throws an error.
for letter …

03 May 2026 1 min read files [1] comments [0] 21 views
// Control Flow
continue — the polite skip

The problem...
You're looping through a sequence. Most items — you process. Some items — you want to skip.
Right now you have no clean way to do that. The loop runs …

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