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 package import turtle # write text turtle.write( "GeeksForGeeks" ) |
Output :
Example 2 :
Python3
# import package import turtle # write text # move turtle turtle.write( "GeeksForGeeks" , move = True ) |
Output :
Example 3 :
Python3
# import package import turtle # write text # styling font turtle.write( "GeeksForGeeks" , font = ( "Verdana" , 15 , "normal" )) |
Output :
Example 4 :
Python3
# import package import turtle # write text # align at right turtle.write( "GeeksForGeeks" , align = "right" ) |
Output :