Vibrant Circle using Python Turtle Graphics | Corona Shape using Python Turtle | Python Project | Vast Coding
Vibrant Circle using Python Turtle Graphics,Corona Shape using Python Turtle,Python Project | Vast Coding
Note:- Please help me to grow my Youtube Channel called "Vast Coding"
Here is the Source Code:-
Vibrant Circle.py
import turtle
t = turtle.Turtle()
s = turtle.Screen()
s.bgcolor('black')
t.pencolor('red')
a = 0
b = 0
t.speed(0)
t.penup()
t.goto(0,200)
t.pendown()
while True:
t.forward(a)
t.right(b)
a+=3
b+=1
if b==210:
break
t.hideturtle()
turtle.done()
Output:-Output |
Comments
Post a Comment