Reference
Last updated on 2025-04-17 | Edit this page
Glossary
Argument
A value passed to a function when it is called.
Concern
A concern in coding refers to a specific aspect, feature, or responsibility within a code. It represents a particular piece of functionality, requirement, or domain-specific logic that needs to be addressed in the code.
DRY (Don’t Repeat Yourself) Principle
The DRY principle states that each piece of knowledge or logic should have exactly one authoritative representation within a system.
Function
A block of organized, reusable code that performs a single action.
Numerical Variable
A variable that holds a number value (either whole numbers or decimals)
Responsibility
A responsibility in programming is a specific task, duty, or function that a piece of code is expected to handle
Separation of Concern
Separation of Concerns is a fundamental principle that guides how we organize code by breaking it into distinct, independent pieces. It ensures that each component of the system handles exactly one concern, making the code more manageable and maintainable.
String
A sequence of characters enclosed in quotes (single or double).
Unit
A single, independent piece of code that performs a specific task
Variable
A named container that stores a value in Python: