colorful animation


import turtle as t
t.bgcolor('black')
t.setup(1537,865)
t.tracer(200)
t.pencolor('black')
t.width(2)
color=('red','orange','purple')
for i in range(2020):
      t.fillcolor(color[i%3])
      t.begin_fill()
      t.fd(i)
      t.rt(200)
      t.fd(i)
      t.circle(22,99)
      t.fd(i)
      t.rt(200)
      t.circle(i,90)
      t.end_fill()
t.done()

Comments

Popular posts from this blog

python turtle animation 16

python turtle animation 11

free fire logo || python turtle graphics code