
from turtle import *
color(‘cyan’, ‘black’)
begin_fill()
while True:
forward(290)
left(640)
if abs(pos()) < 3:
break
end_fill()
done()
Output:


from turtle import *
color(‘cyan’, ‘black’)
begin_fill()
while True:
forward(290)
left(640)
if abs(pos()) < 3:
break
end_fill()
done()
Output:
