turtle.write(arg, move=False, align="left", font=("Arial", 8, "normal"))
Parameters: |
|
---|
Write text - the string representation of arg - at the current turtle position according to align (“left”, “center” or right”) and with the given font. If move is true, the pen is moved to the bottom-right corner of the text. By default, move is False
.
>>> turtle.write("Home = ", True, align="center") >>> turtle.write((0,0), True)
Please login to continue.