<HTML><FONT FACE=arial,helvetica><FONT  SIZE=2 PTSIZE=10>Hello
<BR>
<BR>I downloaded the graphics.py file and have it saved on my computer but everytime I run the following program I seem to keep getting an error.
<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("red")
<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() &nbsp;&nbsp;
<BR>
<BR>
<BR></FONT><FONT  COLOR="#000080" BACK="#ffffff" style="BACKGROUND-COLOR: #ffffff" SIZE=2 PTSIZE=10 FAMILY="SANSSERIF" FACE="Arial" LANG="0">Traceback (most recent call last):
<BR> &nbsp;File "C:/Python24/circle", line 1, in -toplevel-
<BR> &nbsp;&nbsp;&nbsp;from graphics import*
<BR>ImportError: No module named graphics</FONT><FONT  COLOR="#000000" BACK="#ffffff" style="BACKGROUND-COLOR: #ffffff" SIZE=2 PTSIZE=10 FAMILY="SANSSERIF" FACE="Arial" LANG="0">
<BR></FONT></HTML>