Untitled

 avatar
unknown
plain_text
2 years ago
268 B
3
Indexable
import turtle

# create a turtle object
t = turtle.Turtle()

# move the turtle to the starting position
t.penup()
t.goto(0,0)
t.pendown()

# draw the zero
t.circle(50)

# hide the turtle
t.hideturtle()

# keep the window open until it is manually closed
turtle.done()
Editor is loading...