You execute code. Move to the other stuff, and continue with the previous code
TL;DR: Don't mix your train of thought
Refactoring 002 - Extract Method
Entangled code is related beyond time and space.
You are reading the code, then skip to another subject and return to the first one.
def planetary_properties(semi_major_axis,
incoming_radiation, reflected_radiation):
Gravitational_Constant = 1.0
Sun_Mass = 1.0
# Up to here, there's a preparation
# for the orbital period computation
albedo = reflected_radiation / incoming_radiation
# This is unrelated to the previous computation
# You resume the first computation
orbital_period_squared = (
(4 * math.pi**2 * semi_major_axis**3) /
(Gravitational_Constant * Sun_Mass)
)
retrun orbital_period, albedo
def planetary_properties(semi_major_axis,
incoming_radiation, reflected_radiation):
Gravitational_Constant = 1.0
Sun_Mass = 1.0
orbital_period_squared = (
(4 * math.pi**2 * semi_major_axis**3) /
(Gravitational_Constant * Sun_Mass)
)
# This is related to the first computation part
albedo = reflected_radiation / incoming_radiation
# This is related to the second part
# The final solution is to break the function into two
# This is a trivial example for illustration purposes
# Things usually get more complicated and entangled
retrun orbital_period, albedo
Some linters can infer scopes and make suggestions.
AI assistants suggest code without this mistake and improve this problem when asked.
This is a tiny tip and a short example of tidying
Code Smell 107 - Variables Reuse
Code Smells are my opinion.
Photo by Michael Hamments on Unsplash
Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.
Brian Kernighan
Software Engineering Great Quotes
This article is part of the CodeSmell Series: How to Find the Stinky Parts of your Code