Untitled
unknown
plain_text
2 years ago
258 B
10
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