diff --git a/README.md b/README.md index 2828fe3..506878e 100644 --- a/README.md +++ b/README.md @@ -819,6 +819,11 @@ class Employee(Person): self.staff_num = staff_num ``` +```python +>>> Employee.mro() +[, , ] +``` + ### Comparable * **If eq() method is not overridden, it returns `'id(self) == id(other)'`, which is the same as `'self is other'`.** * **That means all objects compare not equal by default.**