Python Turtle Write
import turtle
t = turtle.Turtle()
t.write(arg = "Hello there",font = ("Calibri",16,"bold"))
Silly Snail
import turtle
t = turtle.Turtle()
t.write(arg = "Hello there",font = ("Calibri",16,"bold"))
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
# Python program to draw square
# using Turtle Programming
import turtle
skk = turtle.Turtle()
for i in range(4):
skk.forward(50)
skk.right(90)
turtle.done()
turtle.write(arg, move=False, align=’left’, font=(‘Arial’, 8, ‘normal’))
arg Info, which is to be written to the TurtleScreen
align One of the strings “left”, “center” or right”
font A tuple (fontname, fontsize, fonttype)
import turtle
win = turtle.Screen()
import turtle
myTurtle = turtle.Turtle()
myTurtle.forward(100)
myTurtle.right(90)
myTurtle.forward(100)