Python · OOP: Classes & Inheritance
What does this print? ``` class A: def m(self): print("A.m") class B(A): def m(self): print("B.m") super().m() B().m() ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
