I cant understand why the pack manager wont let you pack LEFT AND RIGHT below top packed widgets. My expected output of the following code would be
A B C D
tkinter pack is one of the all three geometry managers. it helps to specify the geometry of all tkinter widgets. here is the code example.
from tkinter import * window = Tk() Label(window,text = "Text").pack() window.mainloop()
for more info, Refer this tutorial on tkinter pack