Python · OOP: Properties, Methods & Data Classes
What does this print? ``` class A: @staticmethod def add(a, b): return a + b print(A.add(2, 3)) print(A().add(2, 3)) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
