Python · OOP: Properties, Methods & Data Classes
What is printed? ``` class A: @classmethod def who(cls): return cls.__name__ class B(A): pass print(A.who(), B.who()) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
