simple code


import turtle as t
t.tracer(200)
t.setup(1537,865)
t.setpos(100,-50)
t.bgcolor('black')
color=('blue','yellow')
for i in range(2500):
  t.pencolor(color[i%2])
  t.circle(90,90)
  t.circle(i,90)
  t.circle(200,90)
t.done()

Comments

Popular posts from this blog

free fire logo || python turtle graphics code

python turtle animation 15

python turtle animation (3)