Concept Flow - Difference between method types
Call instance.method(obj)
Uses self, accesses instance data
Call class.method(cls)
Uses cls, accesses class data
Call static.method()
No self or cls, independent function
Shows how instance, class, and static methods are called and what data they access.