정보처리수학 p.52 9번째줄
return math.sqrt((self.x*self.x)+(self.y*self.y))
이문장을 return math.sqrt(self.x*self.x + self.y*self.y)로 고치는게 더 간결하고 좋지 않을까 생각합니다.