VOOZH about

URL: https://www.geeksforgeeks.org/python/python-todo-gui-application-using-tkinter/

⇱ Python | ToDo GUI Application using Tkinter - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | ToDo GUI Application using Tkinter

Last Updated : 12 Jul, 2025

Prerequisites : Introduction to tkinter 


Python offers multiple options for developing GUI (Graphical User Interface). Out of all the GUI methods, Tkinter is the most commonly used method. In this article, we will learn how to create a ToDo GUI application using Tkinter, with a step-by-step guide. 


To create a tkinter : 

  • Importing the module – tkinter
  • Create the main window (container)
  • Add any number of widgets to the main window.
  • Apply the event Trigger on the widgets.

The GUI would look like below:

πŸ‘ Image


Let’s create a GUI based simple ToDo application in which you can add and delete the Task.
 

Below is the implementation : 

Output: 

Comment