from gturtle import * makeTurtle() l=100 while l<600: forward(l) right(120) l=l+50 delay(500) hideTurtle()