from math import * from turtle import * from random import * speed(0) color("blue") pensize(2) W=25 L=15 N=25 ht() y=100 for i in range(0,8): pu() goto(-150,y) pd() goto(150,y) y-=W color("red") pensize(3) for needle in range(0,N): x=randint(-150,150) y=randint(-100,100) a=randint(0,360) pu() goto(x,y) setheading(a) pd() fd(L) print("L="+str(L)) print("N="+str(N)) print("W="+str(W)) print("C=???")