Draw a 360 degree circle using Python Turtle Graphic

Опубликовано: 28 Март 2026
на канале: DevEnum
216
3

Draw a 360-degree circle using Python Turtle Graphic
Let us know in the comments for code
#shorts #python #circle #pythonprogramming #pythonturtlegraphics
#pythonturtle #turtlegraphics #pythonprogramming #pythontutorial

python turtle graphics tutorial,
python turtle tutorial,
python turtle animation,
python turtle projects,
python turtle graphics animation,
python turtle art,
python turtle basics,
python turtle beginner,
python turtle cool designs

--Python code to Draw a 360 * circle
import turtle
colorlist = ["orange","blue","green"]
myturtle = turtle.Turtle()
turtle.setup(width=600,height=700)

myturtle.speed(0)

myturtle.pendown()
sides =2
myturtle.speed(0)
for i in range(500):
myturtle.forward(i*2/sides+i)
myturtle.left(360/sides+1.50)
myturtle.color(colorlist[i%3])
myturtle.hideturtle()
myturtle.pensize(2)