turtle python tutorial code example

Example 1: how to import turtle in python

import turtle # imports it
whateverYouWantToCallIt = turtle.Turtle() # adds it to the project
#code
whateverYouWantToCallIt.forward(10) # moves whateverYouWantToCallIt forward
whateverYouWantToCallIt.color("purple") # color
whateverYouWantToCallIt.left(90) # turns him 90 degrees
whateverYouWantToCallIt.right(90) # turns him 90 degrees the other direction

Example 2: Python turtle setup

import turtle
window_Name = turtle.Sreen()
turtle_Name = turtle.Turtle()

Example 3: how to import turtle in python

import turtle

Example 4: python turtle write

import turtle 

t = turtle.Turtle()
t.write(arg = "Hello there",font = ("Calibri",16,"bold"))

Example 5: python turtle tutorial

>>> turtle.heading()
22.0
>>> turtle.left(45)
>>> turtle.heading()
67.0

Example 6: python turtle tutorial

>>> turtle.speed()
3
>>> turtle.speed('normal')
>>> turtle.speed()
6
>>> turtle.speed(9)
>>> turtle.speed()
9