
tkinter — Python interface to Tcl/Tk — Python 3.13.5 documentation
1 day ago · The tkinter package (“Tk interface”) is the standard Python interface to the Tcl/Tk GUI toolkit. Both Tk and tkinter are available on most Unix platforms, including macOS, as well as …
Graphical User Interfaces with Tk — Python 3.13.5 documentation
1 day ago · Tk/Tcl has long been an integral part of Python. It provides a robust and platform independent windowing toolkit, that is available to Python programmers using the tkinter …
tkinter.ttk --- Tk 带主题的控件 — Python 3.15.0a0 文档
tkinter.ttk 模块自 Tk 8.5 开始引入,它提供了对 Tk 风格的部件集的访问。 它还带来了一些额外好处包括在 X11 下的反锯齿字体渲染和透明化窗口(需要有 X11 上的混合窗口管理器)。
Tkinter Dialogs — Python 3.13.5 documentation
2 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.font — Tkinter font wrapper — Python 3.13.5 documentation
1 day ago · The tkinter.font module provides the Font class for creating and using named fonts. The different font weights and slants are: tkinter.font. NORMAL ¶ tkinter.font. BOLD ¶ …
tkinter.messagebox — Tkinter message prompts — Python 3.13.5 …
1 day ago · The tkinter.messagebox module provides a template base class as well as a variety of convenience methods for commonly used configurations. The message boxes are modal and …
24.1. Tkinter — Python interface to Tcl/Tk — Python 2.7.18 文档
Feb 7, 2018 · Tkinter — Python interface to Tcl/Tk¶. The Tkinter module (“Tk interface”) is the standard Python interface to the Tk GUI toolkit. Both Tk and Tkinter are available on most Unix …
tkinter.colorchooser — Color choosing dialog - Python
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.tix --- TK扩展包 — Python 3.11.12 文档
tkinter.tix (Tk Interface Extension) 模块提供了更丰富的额外可视化部件集。 虽然标准 Tk 库包含许多有用的部件,但还远不够完备。 tkinter.tix 库提供了标准 Tk 所缺少的大量常用部件: HList, …
datetime — Basic date and time types — Python 3.13.5 …
where yday = d.toordinal()-date(d.year, 1, 1).toordinal() + 1 is the day number within the current year starting with 1 for January 1st.. date. toordinal ¶ Return the proleptic Gregorian ordinal of …