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