
tkinter — Python interface to Tcl/Tk — Python 3.13.3 documentation
2 days ago · Tkinter supports a range of Tcl/Tk versions, built either with or without thread support. The official Python binary release bundles Tcl/Tk 8.6 threaded. See the source code …
Graphical User Interfaces with Tk — Python 3.13.3 documentation
2 days ago · The tkinter package is a thin object-oriented layer on top of Tcl/Tk. To use tkinter, you don’t need to write Tcl code, but you will need to consult the Tk documentation, and …
Tkinter Dialogs — Python 3.14.0a7 documentation
5 days ago · The tkinter.filedialog module provides classes and factory functions for creating file/directory selection windows. Native Load/Save Dialogs ¶ The following classes and …
tkinter.ttk — Tk themed widgets — Python 3.13.3 documentation
2 days ago · The tkinter.ttk module provides access to the Tk themed widget set, introduced in Tk 8.5. It provides additional benefits including anti-aliased font rendering under X11 and window …
Graphic User Interface FAQ — Python 3.13.3 documentation
3 days ago · Standard builds of Python include an object-oriented interface to the Tcl/Tk widget set, called tkinter. This is probably the easiest to install (since it comes included with most …
24.1. Tkinter — Python interface to Tcl/Tk — Python 2.7.18 文档
Feb 7, 2018 · Running python-m Tkinter from the command line should open a window demonstrating a simple Tk interface, letting you know that Tkinter is properly installed on your …
Installing Python Modules — Python 3.13.3 documentation
1 day ago · Starting with Python 3.4, it is included by default with the Python binary installers. A virtual environment is a semi-isolated Python environment that allows packages to be installed …
tkinter.colorchooser — Color choosing dialog — Python 3.13.3 …
2 days ago · The tkinter.colorchooser module provides the Chooser class as an interface to the native color picker dialog. Chooser implements a modal color choosing dialog window. The …
tkinter.dnd — Drag and drop support — Python 3.13.3 …
5 days ago · The tkinter.dnd module provides drag-and-drop support for objects within a single application, within the same window or between windows. To enable an object to be dragged, …
24.5. turtle — Turtle graphics for Tk — Python 2.7.18 文档
Because it uses Tkinter for the underlying graphics, it needs a version of Python installed with Tk support. 面向对象的接口主要使用“2+2”个类: The TurtleScreen class defines graphics …