from turtle import * from random import * trinity = Turtle() trinity.color("purple") trinity.up() trinity.goto(100, 100) trinity.shape("turtle") shelley = Turtle() shelley.color("brown") shelley.up() while(True): shelley.forward(randint(0, 20)) shelley.right(randint(0, 360)) trinity.ondrag(trinity.goto)