// blog

Articles

// Basics
Python Loves Numbers

The problem...
You've worked with text. You know how to store it, transform it, print it.
But most real programs don't just deal with text.
They count things. Calculate things.…

28 Apr 2026 1 min read files [1] comments [0] 38 views
// Basics
Python Does the Math

The problem...
You have numbers. But numbers alone don't do much.
You need to work with them. Add. Subtract. Multiply. Divide.
And you need Python to do it for you.
The idea!

28 Apr 2026 2 min read files [1] comments [0] 41 views
// Basics
int vs float — Know the Difference

The problem...
You've used numbers. You've done math.
But at some point, something unexpected happens.
You divide two numbers and get a decimal. You expect a whole number and g…

28 Apr 2026 1 min read files [1] comments [0] 38 views
// Basics
Python Getting Math Dirty

The problem...
Basic arithmetic is fine for simple calculations.
But what about square roots? Powers? Rounding? Pi?
At some point, basic operators aren't enough.
The idea!
Py…

28 Apr 2026 1 min read files [1] comments [0] 39 views
// Basics
Your Second Mini Project — Make the Math Work

The problem...
You've learned how numbers work. You've done arithmetic. You've used the math module.
But you haven't built anything with it yet.
It's time to change that.
The …

28 Apr 2026 1 min read files [1] comments [0] 37 views
// Basics
Your Third Mini Project — Math Around You

The problem...
Math isn't just in textbooks.
It's in your body. Your weight. Your height. Your health.
And Python can calculate it in seconds.
The idea!
You're going to build…

28 Apr 2026 2 min read files [1] comments [0] 38 views