#In this phase we draw 8 knobs in a line:
import turtle
t=turtle.Turtle()
t.color('red', 'yellow')
def blita():
t.begin_fill()
t.lt(90)
t.fd(30)
t.lt(90)
t.fd(30)
t.rt(90)
t.fd(30)
t.rt(90)
t.fd(90)
t.rt(90)
t.fd(30)
t.rt(90)
t.fd(30)
t.lt(90)
t.fd(30)
t.rt(90)
t.fd(30)
t.lt(180)
t.end_fill()
t.pu()
t.fd(400)
t.pd()
blita()
for i in range (7):
t.pu()
t.fd(-120)
t.pd()
blita()
turtle.done()
No comments:
Post a Comment