Untitled
unknown
plain_text
a year ago
268 B
0
Indexable
Never
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()