new animations


import turtle as t
t.tracer(20)
t.setup(1537,865)
t.bgcolor('black')
color=('red','blue','green','yellow')
t.setpos(0,-200)
for i in range(1200):
         t.pencolor('cyan')
         t.fillcolor(color[i%4])
         t.begin_fill()
         t.rt(90)
         t.fd(i)
         t.rt(200)
         t.fd(i)
         t.rt(90)
         t.circle(200,90)
         t.fd(i)
         t.end_fill()
t.done()

Comments

Popular posts from this blog

free fire logo || python turtle graphics code

python turtle animation 15

python turtle animation (3)