On Wed, 28 Sep 2005 [EMAIL PROTECTED] wrote:
> 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.
[some text cut]
> Traceback (most recent call last):
> File "C:/Python24/circle", line 1, in -topleve
Hello
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.
from graphics import*
def main():
win=GraphWin()
shape = Circle(Point(50,50), 20)
shape.setOutline("red")
shape.setFill("red")
s