Python · OOP: Properties, Methods & Data Classes
What does this print? ``` from dataclasses import dataclass @dataclass class Point: x: int y: int print(Point(1, 2) == Point(1, 2)) print(Point(1, 2)) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
