Untitled

mail@pastecode.io avatar
unknown
plain_text
16 days ago
258 B
1
Indexable
Never
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)
Leave a Comment