Re: [Tutor] help with running graphics program

2005-09-28 Thread Danny Yoo
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

[Tutor] help with running graphics program

2005-09-28 Thread Goofball223
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