1 2 3 4 5 6 7 import turtle t = turtle.Turtle() for n in range(30) : t.forward(n * 10) t.right(144) cs