design code

import turtle as t
t.speed(0)
t.bgcolor('black')
t.colormode(255)
for i in range(255):
      t.pencolor(i,0,255-i)
      t.backward(i)
      t.rt(90)
      t.fd(i)
      t.rt(179)
      t.circle(12,30)

Comments

Popular posts from this blog

free fire logo || python turtle graphics code

python turtle animation 15

python turtle animation 14