Concept Flow - Class methods and cls usage
Define class with @classmethod
Call class method on class or instance
cls parameter receives the class
Access or modify class variables via cls
Return or print results
End
Class methods receive the class itself as the first argument (cls), allowing access to class variables and methods without needing an instance.