You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* If you call `type()` on an inbuilt such as `int`, it returns `type` which means it's a base type.
103
+
104
+
#### 1.4. Method Resolution Order [MRO]
105
+
106
+
`Method Resolution Order` is the order in which a method is resolved.
107
+
108
+
When a method is called on an object, it first looks up in the inherited methods (from the class from which the object was instantiated), and then moves to its parent class, if not found.
109
+
110
+
Hence, an integer object will first look for the methods under the `int()` class, and then the parent class of `int()`, ie.. object().
0 commit comments