amazing animations


import turtle as t
t.tracer(200)
t.width(8)
t.setup(1537,865)
t.bgcolor('black')
color=('red','blue','green','yellow','purple','lime')
for i in range(13280):
	t.pencolor(color[i%6])
	t.circle(i,90)
	t.fd(i)
	t.rt(90)
	t.fd(i)
	t.circle(i,90)
	t.fd(i)
	t.rt(270)
t.done()

Comments

Popular posts from this blog

free fire logo || python turtle graphics code

python turtle animation 15

python turtle animation (3)