I'm trying to change the font for the turtle graph.
def goto(x,y):
turtle.up()
turtle.goto(x,y)
turtle.down
import turtle
turtle.tracer(False)
turtle.width(3)
goto(-270,270)
turtle.right(90)
turtle.forward(540)
turtle.left(90)
turtle.forward(540)
turtle.left(90)
turtle.forward(540)
turtle.left(90)
turtle.forward(540)
goto(50,50)[B]
turtle.write('testing')[/B]
turtle.tracer(True)
That's a box I created and I want to add text to it. I looked around the Python documentation but can't find any argument for it. I wan to increase the size of the text. Is there a way?
I tried turtle.write('testing',font=('arial',8,'normal')) but to no avail.