Untitled
unknown
plain_text
10 months ago
258 B
3
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