SortedCoding
1.2K subscribers
185 photos
38 videos
194 files
140 links
Learn to code with clarity and precision
Download Telegram
Screenshot 2024-08-03 234226.png
303.4 KB
from turtle import *

bgcolor('#f3f3f3')
pencolor('#bc2a8b')
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)

done()
🔥1