Is there any way I can create a table like UI with Tkinter? Any widget or module?
Thanks.
Is there any way I can create a table like UI with Tkinter? Any widget or module?
Thanks.
Yes, there is a table in tkinter
. It's highly dynamic and fluid. You can set rows
, columns
, columnspan
, rowspan
, and more. The best part is: it's built right into the root
and Frame
. You can access it via .grid(), and configure it via .grid_rowconfigure()
and .grid_columnconfigure()