Howdy,

I need to create a pair of circles, but have them drawn five times onto a single window. I am totally stumped. Here is what I have so far that prints one pair of circles:

Code:
def p91_clone():
    win = GraphWin("cloning dots")
    leftEye = Circle(Point(80,50),5)
    leftEye.setFill('yellow')
    leftEye.setOutline('red')
    rightEye = leftEye.clone()
    rightEye.move(20,0)
...