tkinter
Stdlib — GUIPython 2.0+Intermediate
Standard Python GUI toolkit (Tcl/Tk bindings)
Quick Info
- Documentation
- Official Docs
- Python Version
- 2.0+
- Dependencies
- None — Python Standard Library
- Install
Included with Python
Learn by Difficulty
Quick Example
python
import tkinter print(f"Module: tkinter") print(f"Contents: {dir(tkinter)[:10]}")
The tkinter module is part of Python's standard library. Standard Python GUI toolkit (Tcl/Tk bindings).
Try in PlaygroundTags
stdlibguidesktop