1 2 3 4 5 6 7 8 9 import turtle t = turtle.Turtle() length = 50 for m in range(3,20) : for k in range(m) : t.forward(length) t.left(360/m) cs