Instagram logo using python - turtle programming

Опубликовано: 17 Апрель 2026
на канале: Adi's Technical Aid
337
9

Instagram logo using python - turtle programming
#short
#shortvideo
#youtubeshort
#firstyoutubeshort

Code :
from turtle import *
setup(width=600, height=600)
bgcolor("white")
pencolor('black')
width(23)
penup()
goto(160,-100)
pendown()

left(90)
for i in range(4):
forward(250)
circle(34,90)

penup()
goto(85,30)
pendown()
circle(80,360)
penup()
goto(110,130)
pendown()
circle(7,360)
hideturtle()
done()