// blog

Articles

// Basics
Common Number Mistakes

The problem...
Numbers seem straightforward. You add, subtract, multiply, divide.
But Python has quirks. And some of them will catch you off guard.
These are the mistakes almos…

28 Apr 2026 2 min read files [1] comments [0] 38 views
// Basics
Numbers — The Full Picture

The idea!
You've covered a lot. int, float, arithmetic, the math module, two real projects.
This is your reference. Everything in one place.
Come back here whenever you need a …

28 Apr 2026 1 min read files [1] comments [0] 38 views
// Basics
This One's Yours — Numbers

You did it. Again.
And this time, you knew what you were doing.
int. float. Arithmetic. Division quirks. The math module. Two real projects — a temperature converter and a…

28 Apr 2026 1 min read files [1] comments [0] 40 views
// Basics
Everything is True or False

The problem...
You've worked with text. You've worked with numbers.
But some questions don't have a text or number answer.
Is the user logged in? Is the price above 100? Is the…

29 Apr 2026 1 min read files [1] comments [0] 37 views
// Basics
What If One Thing Is True and the Other Isn't?

The problem...
You know how to check one condition.
Is the age above 18? Is the price below 100?
But real programs rarely check just one thing at a time.
What if you need both…

29 Apr 2026 2 min read files [1] comments [0] 35 views
// Basics
Is It in There?

The problem...
You have a value. You want to know if it exists somewhere.
Is this letter in the word? Is this word in the sentence?
You could check character by character. But …

29 Apr 2026 1 min read files [1] comments [0] 35 views