Python Learning ...
194 subscribers
32 photos
1 file
29 links
Learn python programming language
Download Telegram
Channel created
Channel photo updated
Python Learning ... pinned «https://instagram.com/learning_code_?utm_medium=copy_link Follow instagram for more videos»
import turtle
import colorsys

t = turtle.Turtle()
t.speed(0)
turtle.bgcolor('black')
h = 0

for i in range(360):
color = colorsys.hsv_to_rgb(h, 1, 0.8)
t.color(color)
t.goto(0,0)
t.fd(150+i/5)
t.right(90)
t.fd(150+i/4)
t.right(91)
h+= 0.004