Friday, October 3, 2025
HomeLanguagesturtle.write() function in Python

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 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 :

 

 

RELATED ARTICLES

Most Popular

Dominic
32332 POSTS0 COMMENTS
Milvus
85 POSTS0 COMMENTS
Nango Kala
6703 POSTS0 COMMENTS
Nicole Veronica
11868 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11929 POSTS0 COMMENTS
Shaida Kate Naidoo
6819 POSTS0 COMMENTS
Ted Musemwa
7080 POSTS0 COMMENTS
Thapelo Manthata
6775 POSTS0 COMMENTS
Umr Jansen
6776 POSTS0 COMMENTS