beautiful animation design using turtle
logo design using turtle in python programming
#shorts
#youtubeshorts #pythonprogramming #python #pythonlanguage #pythonshorts #pythontutorial #pythonprogram #python3 #youtubeshortsviral
#chess
#turtle
source code---
#3D animation design using turtle by highteckgirl
import turtle,colorsys
t=turtle.Turtle()
turtle.bgcolor("black")
t.speed(0)
t.pensize(5)
hue=0.0
for i in range(150):
color=colorsys.hsv_to_rgb(hue,1,1)
t.color(color)
t.up()
t.goto(0,0)
t.fd(i)
t.down()
t.circle(i)
t.lt(181)
hue+=0.005
t.ht()
turtle.done()