import turtle spiral=turtle.Turtle() for i in range(30): spiral.forward(i*15) spiral.right(144) turtle.done() getchar()