// blog

Articles

// Functions
Functions — The Full Picture

The idea!
You've covered def, parameters, default parameters, return, scope, multiple return values, try/except, and raise.
This is your reference. Everything in one place.
Com…

05 May 2026 1 min read files [1] comments [0] 21 views
// Functions
This One's Yours — Functions

You did it.
And this one is different.
Basics gave you the building blocks. Control Flow taught your code to think and repeat. But Functions — Functions changed something …

05 May 2026 1 min read files [1] comments [0] 21 views
// Data Structures
What Is a List? (And Why You'll Use It Everywhere)

The problem...
You have five soldiers. Each one has a name.
You could store them like this:
soldier1 = "Raven"
soldier2 = "Wolf"
soldier3 = "Ghost"
soldier4 = "Viper"
soldi…

05 May 2026 2 min read files [0] comments [0] 19 views
// Data Structures
How to Build a List in Python

The problem...
You know what a list is. One variable, multiple values.
But knowing the concept isn't the same as knowing how to build one.
There are several ways to create a li…

05 May 2026 2 min read files [1] comments [0] 19 views
// Data Structures
split(): The Method We Promised You'd See Again

The problem...
You have a string. One long piece of text.
But the data inside it isn't one thing — it's many things stuck together.
line = "Raven Wolf Ghost Viper Bull"

05 May 2026 2 min read files [1] comments [0] 20 views
// Data Structures
Getting Elements Out of a List

The problem...
You have a list. Five names, ten scores, a hundred values.
But you don't always need the whole thing.
You need one element. Or a few. Or everything from position…

05 May 2026 2 min read files [1] comments [0] 20 views