WHAT IS TKINTER ? Tkinter is a standard Python GUI (Graphical User Interface) library that provides a set of tools and widgets to create desktop applications with graphical interfaces . Tkinter is included with most Python installations, making it easily accessible for developers who want to build GUI applications without requiring additional installations or libraries.
Where is Python Tkinter used? Creating windows and dialog boxes Building a GUI for a desktop application Creating custom widgets Adding a GUI to a command-line program
What are Widgets in Tkinter ? Button Checkbutton Entry Label Radiobutton Spinbox Combobox
Fundamental structure of Tkinter program
GENERAL CODE IN TKINTER from tkinter import * root = Tk () ''' widgets are added here ''' root.mainloop ()