def main(): length = 128 sides = 3 while length != 1: printPolygon(sides, length) turtle.forward(length / 4) sides += 1 length /= 2 return # main()