turtle.write() function in Python

The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses Tkinter for the underlying graphics, it needs a version of Python installed with Tk support.
turtle.write()
This function is used to write text at the current turtle position.
Syntax :
turtle.write(arg, move=False, align=’left’, font=(‘Arial’, 8, ‘normal’))
Parameters:
| Arguments | Description |
| arg | Info, which is to be written to the TurtleScreen |
| move | True/False |
| align | One of the strings “left”, “center” or right” |
| font | A tuple (fontname, fontsize, fonttype) |
Below is the implementation of the above method with some examples :
Example 1 :
Python3
# import packageimport turtle# write textturtle.write("GeeksForGeeks") |
Output :
Example 2 :
Python3
# import packageimport turtle# write text# move turtleturtle.write("GeeksForGeeks", move=True) |
Output :
Example 3 :
Python3
# import packageimport turtle# write text# styling fontturtle.write("GeeksForGeeks", font=("Verdana", 15, "normal")) |
Output :
Example 4 :
Python3
# import packageimport turtle# write text# align at rightturtle.write("GeeksForGeeks", align="right") |
Output :



