20 lines
540 B
Python
20 lines
540 B
Python
class Point:
|
|
def __init__(self, x, y):
|
|
self.x = x
|
|
self.y = y
|
|
|
|
def __eq__(self, other) -> bool:
|
|
if isinstance(other, Point):
|
|
if self.x == other.x and self.y == other.y:
|
|
return True
|
|
else:
|
|
return False
|
|
else:
|
|
raise TypeError("You can compare only Point with Point")
|
|
|
|
def __hash__(self) -> None:
|
|
return int(f"{self.x}000{self.y}")
|
|
|
|
def __str__(self) -> str:
|
|
return f"{self.x = } | {self.y = }"
|