import shapes shapes_list = [] c1 = shapes.Circle(0,0,50) c2 = shapes.Circle(-200,100,90) r1 = shapes.Rectangle(40,0,50,70) r2 = shapes.Rectangle(200,15,20,40) s1 = shapes.Square(25,100,50) s2 = shapes.Square(25,200,75) shapes_list.append(c1) shapes_list.append(c2) shapes_list.append(r1) shapes_list.append(r2) shapes_list.append(s1) shapes_list.append(s2) for s in shapes_list: s.draw() print(str(s)) input("Press enter when you're done looking at your artwork!")