from turtle import * from cmath import * for j in range(32): z = rect(30, pi * j / 16) for i in range(6): xy = z + rect(80, i * pi / 2) penup() if i == 0 else pendown() goto(xy.real, xy.imag) hideturtle()
Create, edit, and import your Python scripts
from turtle import * from cmath import * for j in range(32): z = rect(30, pi * j / 16) for i in range(6): xy = z + rect(80, i * pi / 2) penup() if i == 0 else pendown() goto(xy.real, xy.imag) hideturtle()