Knowledge organisersMaintainable Code
Clear and descriptive identifiers.
Meaningful names tell the reader what a variable or function does without needing extra comments. Code with clear names is easier to debug and maintain.
total_score not tscalculate_area()# Clear
student_age = 15
total_marks = 87
# Unclear
sa = 15
tm = 87