amazing python turtle graphics codes


import turtle as t
import colorsys as c
t.tracer(200)
t.setup(1537,865)
t.bgcolor('black')
d=0.0
t.shape('turtle')
for i in range(2000):
    d+=0.001
    color=c.hsv_to_rgb(d,1,1)
    t.pencolor(color)
    t.fd(i)
    t.rt(200)
    t.circle(90,90)
    t.stamp()
    t.rt(90)
t.done()

Comments

Popular posts from this blog

free fire logo || python turtle graphics code

python turtle animation 15

python turtle animation (3)