# File: ChapterGraphics/circle0.py # always have the file graphics.py by Zelle in your folder # window size is 100 x 100 from graphics import * # needs graphics.py in the same folder def main(): win = GraphWin("My Circle", 100, 100) c = Circle(Point(50,50), 10) # center (50,50) radius=10 c.setFill("#ff00a0") # add color c.draw(win) # draw the object you just defined main()