1turtle.write(arg, move=False, align=’left’, font=(‘Arial’, 8, ‘normal’))
2
3arg Info, which is to be written to the TurtleScreen
4
5align One of the strings “left”, “center” or right”
6
7font A tuple (fontname, fontsize, fonttype)
1import turtle # imports it
2whateverYouWantToCallIt = turtle.Turtle() # adds it to the project
3#code
4whateverYouWantToCallIt.forward(10) # moves whateverYouWantToCallIt forward
5whateverYouWantToCallIt.color("purple") # color
6whateverYouWantToCallIt.left(90) # turns him 90 degrees
7whateverYouWantToCallIt.right(90) # turns him 90 degrees the other direction
1import turtle
2
3t = turtle.Turtle()
4t.write(arg = "Hello there",font = ("Calibri",16,"bold"))