new designs of python turtle graphics


import turtle as t
t.width(30)
t.tracer(100)
t.setup(1537,865)
#subhanker codes
t.bgcolor('black')
color=('red','blue','green','gold','purple')
for i in range(14064):
	t.pencolor(color[i%5])
	t.fd(i)
	t.rt(90)
	t.circle(i,270)
	t.fd(i)
	t.rt(180)
	t.circle(i,270)
t.done()

Comments

Popular posts from this blog

python turtle animation 16

python turtle animation 15

python turtle animation 12