Untitled
unknown
plain_text
a year ago
258 B
6
Indexable
import turtle
def draw\_mickey\_dots():
# Set up the turtle canvas
turtle.penup()
turtle.goto(-200, 200)
turtle.pendown()
turtle.color("red")
for i in range(4):
turtle.circle(50)
turtle.dot(5)
turtle.right(90)Editor is loading...
Leave a Comment