<HTML><FONT FACE=arial,helvetica><FONT  SIZE=2 PTSIZE=10>Hello
<BR>
<BR>How would I get the following program to draw squares instead of circles?
<BR>
<BR>
<BR>from graphics import*
<BR>
<BR>def main():
<BR> &nbsp;&nbsp;&nbsp;win=GraphWin()
<BR> &nbsp;&nbsp;&nbsp;shape = Circle(Point(50,50), 20)
<BR> &nbsp;&nbsp;&nbsp;shape.setOutline("red")
<BR> &nbsp;&nbsp;&nbsp;shape.setFill("blue")
<BR> &nbsp;&nbsp;&nbsp;shape.draw(win)
<BR> &nbsp;&nbsp;&nbsp;for i in range(10):
<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;p = win.getMouse()
<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;c = shape.getCenter()
<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;dx = p.getX() - c.getX()
<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;dy = p.getY -c.getY()
<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;shape.move(dx,dy)
<BR> &nbsp;&nbsp;&nbsp;win.close()
<BR>main() </FONT></HTML>