distance() distance 메서드는 뒤에 오는 argument에 따라 해석이 달라진다. 총 2가지 케이스가 있다. 첫 번째! ★.distance(♡) : ★로부터 ♡까지의 거리 ninja = Turtle(shape = "turtle") circle = Turtle(shape = "circle") circle.forward(100) print(circle.distance(ninja)) ★.distance(x, y) : ★로부터 (x, y)까지의 거리 from turtle import Turtle, Screen screen = Screen() screen.setup(height=600, width=800) #기준점 center= Turtle(shape="circle") center.shapesize..