Amazing Graphics Animation Using Python Turtle 💥💥😎🥰 | Coding Status
Amazing Graphics Animation Using Python Turtle 💥💥😎🥰 | Coding Status
Let's Start
Video Tutriol
You can visit our YouTube channel 'Mr Code Box' and watch the video tutorial.
Source Code
from turtle import*
import colorsys as cs
speed('fastest')
hideturtle()
bgcolor('Black')
width(2)
for i in range(300):
color(cs.hsv_to_rgb(i/300,1,1))
left(121)
fd(i*1.5)
exitonclick()
Post a Comment