# This is the data format produced and parsed by our painting tool. import shapes shapes.rectangle(10, 10, 200, 100, "red") shapes.circle(50, 50, 20, "green") xList= [10, 20, 30] for x in xList: shapes.rectangle(x, x, 10, 10, "blue")