Topic

Method Binding in Python
Date: Sept. 11, 2025, 6 p.m.

In this talk, we’ll explore method binding in Python. What really happens when you put a function inside a class? At first glance, it may look like just another function, but Python transforms it into a method by automatically handling the binding between the function and the class instance. 
We'll explore notions of self, some __methods__, and a little of what Python does under the hood.