Untitled

Anonymous
plain_text
08/31/2024 1:41 PM
360 B
21
Indexable
screen = turtle.Screen()
screen.bgcolor("white")
pen = turtleTurtle()
pen.color("red")
pen.width(2)
pen.begin_fill()
pen.left(140)
pen.forward(224)
pen.circle(-112, 200)
pen.right(120)
pen.circle(-112, 200)
pen.forward(224)
pen.end_fill()
pen.hideturtle()
turtle.done()
Editor is loading...
Leave a Comment