''' city2.py Jeff Ondich, 10/23/09 Putting the Building class through some paces, round 2. ''' from graphics import * from building import Building window = GraphWin('City', 800, 500) # Short and purple b = Building(50, 450, 140, 250) b.setColor(color_rgb(150, 20, 150)) b.draw(window) # Tall and blue b = Building(220, 450, 140, 400) b.setColor(color_rgb(20, 20, 150)) b.draw(window) # Short and red b = Building(390, 450, 140, 250) b.setColor(color_rgb(150, 20, 20)) b.draw(window) response = raw_input('Hit Enter to quit')