amazing circular pattern in python turtle graphics


import turtle as t
t.tracer(200)
t.setup(1537,865)
t.bgcolor('black')
color=('red','blue')
for i in range(2000):
    t.pencolor(color[i%2])
    t.circle(i,90)
    t.circle(i,91)
t.done()

Comments

Popular posts from this blog

free fire logo || python turtle graphics code

python turtle animation 15

python turtle animation 14