Better Programming

Advice for programmers.

Follow publication

Member-only story

Stop Using Magic Numbers and Variables in Your Code

Martin Andersson Aaberge
Better Programming
Published in
5 min readJan 22, 2021
iPad, flowers, and a cup of coffee on a bench
Photo by Isabel Maria Guner-Velasco on Unsplash

Have you ever scratched your head reading code you didn’t write yourself?

Of course you have.

You’re not a bad programmer who can’t read code. Maybe the programmer who wrote the code was a magician — the wrong kind of magician.

Keep this quote in the back of your head while coding.

“Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.” — John Wood

Many programs suffer from the fact that they aren’t written with another reader in mind. If you don’t have the violent psychopath in the back of your head while writing code, chances are some bad code will sneak in.

You might have a hard time reading your own code as well after a while unless you write code that everyone will understand forever.

What Is Magic?

Please don’t confuse the magic we are talking about today with magic methods (Dunder methods).

You have most likely used __init__ as an initializer for your class. Have you tried using __str__ to control what happens when you print your object?

The magic we don’t like is magic variables and magic numbers.

Magic variables

A magic variable has a variable name that does not reflect what it represents. The name is complete gibberish, and it isn’t meaningful to the reader.

The following code declares a magic variable:

a = [i for i in range(1,7)]

a can be anything. Sure, it’s a list ranging from 1–6, but how will we use it? Grades, doors in the room, leftovers in the fridge?

There is no way you can know what this code is supposed to do.

dice_alternatives = [die for die in range(1,7)]

The code was all about dice, and the code created a list based on the number of faces the die had. Now it makes sense.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Martin Andersson Aaberge
Martin Andersson Aaberge

Written by Martin Andersson Aaberge

CG supervisor with 20 years of experience in the Animation- and VFX industry. UX, Writing, Programming, Productivity. martinaaberge.collaboration@gmail.com

Responses (6)

Write a response