import turtle print "Staring program..." t = turtle.Turtle() for i in range(2): t.forward(100) t.right(90) t.color("green") print "Program finished!"