# File: exp1.py # # Simple test of graphics module from textbook # See documentation in: # # http://mcsp.wartburg.edu/zelle/python/graphics/graphics/graphics.html from graphics import * import time # make a window for drawing stuff win = GraphWin("Hello", 500, 500) # wait for 3 seconds time.sleep(3) # make the window go away win.close()