from turtle import *
setup()
x = 0
y = 0
def figure(n):
goto(x, y)
for z in range(n):
fd(200)
rt(360/n)
figure(6)
figure(5)
figure(4)
figure(3)
exitonclick()
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments