Python's standard GUI library
Tkinter is Python's de-facto standard GUI (Graphical User Interface) package. It provides a fast and easy way to create GUI applications. Tkinter is included with standard Linux, Microsoft Windows and Mac OS X installs of Python.
Key Features:
Common Use Cases:
import tkinter as tk
import tkinter as tk
window = tk.Tk()
window.title("Hello Tkinter")
label = tk.Label(window, text="Hello, World!")
label.pack()
window.mainloop()