Here is a sample program to get you going:
import turtle scr = turtle.Screen() t = turtle.Turtle() t.forward(100) t.left(90) t.forward(50) turtle.done()
Here is the documentation from Python.org:
Here is a sample program to get you going:
import turtle scr = turtle.Screen() t = turtle.Turtle() t.forward(100) t.left(90) t.forward(50) turtle.done()
Here is the documentation from Python.org: