tkinter module ("TK  " Interface ) Yes Python The standard Tk GUI Tool Pack Interface . Tk and tkinter can be in most Unix The is used under the platform, and can also be applied to Windows and In the Macintosh system, ., subsequent versions of Tk8.0 can implement the local window style , and runs well on most platforms . The Tkinter contains several modules. The TK interface is encapsulated in a _tkinter binary module (an earlier version of tkinter ) . This module contains TK's low-level interfaces, Thus it will not be applied directly by programmers. It usually behaves as a shared library (or DLL file), but in some versions it is combined with the Python interpreter. in the add-on module of the TK interface, Tkinter contains some python modules, stored in a subdirectory of the standard library, called tkinter. There are two important modules, one is tkinter themselves, the other is called Tkconstants: the former automatically import the latter, so if you use Tkinter, just import a module can
Import Tkinter
or more commonly used:
From Tkinter Import *