<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> win=GraphWin()
<BR> shape = Circle(Point(50,50), 20)
<BR> shape.setOutline("red")
<BR> shape.setFill("red")
<BR> shape.draw(win)
<BR> for i in range(10):
<BR> p = win.getMouse()
<BR> c = shape.getCenter()
<BR> dx = p.getX() - c.getX()
<BR> dy = p.getY -c.getY()
<BR> shape.move(dx,dy)
<BR> win.close()
<BR>main()
<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> File "C:/Python24/circle", line 1, in -toplevel-
<BR> 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>