The grid geometry manager

Alternative to pack: grid
Widgets are organized in m times n cells, like a spreadsheet
Widget placement:
widget.grid(row=1, column=5)
A widget can span more than one cell
widget.grid(row=1, column=2, columnspan=4)

previousnexttable of contents