Sunday, October 5, 2025
HomeLanguagesHow to Delete Tkinter Text Box’s Contents?

How to Delete Tkinter Text Box’s Contents?

Prerequisite:

Python offers multiple options for developing GUI (Graphical User Interface) out of which Tkinter is the most preferred means. It is a standard Python interface to the Tk GUI toolkit shipped with Python. Python with Tkinter is the fastest, most reliable and easiest way to create a desired GUI application. 

What is Text Widget?

The Text widget is used to for showing text data on the Python application. However, Tkinter supports Entry widget which can be used to implement a single line text box. But, a text widget can be used to display the multi-line formatted text with various styles and attributes.

Approach

  • Import module
  • Create a normal Tkinter window.
  • Add text Box

Syntax:

Text(Object Name, **attr)
  • For deleting content from Text Box, we will create a delete button to implement delete method. Clicking on this button will erase the content written in the text box.

Syntax:

Object_name.delete(first=number, last=number)

Given below is the program to implement the same:

Python3




# Import Module
from tkinter import *
 
# Create Object
root = Tk()
 
# specify size of window.
root.geometry("400x500")
 
# delete content from Text Box
 
 
def delete_text():
    T.delete("1.0", "end")
 
 
# Create text widget
T = Text(root)
T.pack()
 
# Create Delete Button
Button(root, text="Delete", command=delete_text).pack()
 
# Execute Tkinter
root.mainloop()


Output:

RELATED ARTICLES

Most Popular

Dominic
32337 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6707 POSTS0 COMMENTS
Nicole Veronica
11871 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6823 POSTS0 COMMENTS
Ted Musemwa
7089 POSTS0 COMMENTS
Thapelo Manthata
6779 POSTS0 COMMENTS
Umr Jansen
6779 POSTS0 COMMENTS