Does tkinter have a table widget?

Tkinter doesn’t have a built-in table widget. The closest you can use is a Listbox or a Treeview of the tkinter’s sub package ttk.

However, you can use tktable, which is a wrapper around the Tcl/Tk TkTable widget, written by Guilherme Polo. Note: to use this wrapper library you need first to have installed the original Tk’s TkTable library, otherwise you will get an “import error”.

Leave a Comment