1example1 = Label(root, text="Top left column")
2example1.grid(row=0, column=0)
3#Or
4example2 = Label(root, text="Middle right colum") .grid(row=1, column=1)
5
6#ColumnSpan
7example3 = Label(root, text="Bottom Row")
8example3.grid(row=2, columnspan=2)