Untitled

Anonymous
plain_text
05/04/2023 7:13 AM
360 B
20
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...