from math import pi class Point: def __init__(self, x: float, y: float): self.x = x self.y = y