Skip to main content

Tkinter is the standard Python interface to the "Tk" graphical user interface toolkit.

Tkinter is the standard Python interface to the Tk graphical user interface (GUI) toolkit. Tkinter runs on all common Mac, Windows and Unix/Linux platforms, making it easy to create rich, cross-platform desktop applications with Python.

, the toolkit upon which Tkinter is based, is a mature, robust toolkit that has its roots in the language, but which can be used with many modern languages including , , and others. Tk provides a native look and feel on Windows, Mac and Unix platforms. For more information about the cross-platform and cross-language features of Tk visit tkdocs.com.

The following is a Python 2 sample program loosely based on the documentation example but modified to avoid a global import. In Python 3 it is needed to change the import statement, since the module was renamed to tkinter.

import Tkinter as tk
class Application(tk.Frame):
    def say_hi(self):
        print("Hello, world!")
    def __init__(self, master=None):
        tk.Frame.__init__(self, master)
        self.quit = tk.Button(self, text="QUIT", command=self.quit, fg="red")
        self.quit.pack(side="left")
        self.hello = tk.Button(self, text="Hello", command=self.say_hi)
        self.hello.pack(side="left")

root = tk.Tk()
app = Application(root)
app.pack(side="top", fill="both", expand=True)
app.mainloop()

Due to its power and maturity, tools such as EasyGUI (no longer maintained) have been written on top of Tkinter to make it even easier to use.

References:


Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant