Python Tkinter Widget Displacement with Pack ()

#You can solve this problem a couple of ways. One solution is to pack the label to one side or the other rather than the top.

btn1.pack(side='left')
lbl.pack(side='left', fill='x', expand=True)
btn2.pack(side='right')
#Another is to pack the buttons first, and then pack the label. With pack the order matters.

btn1.pack(side='left')
btn2.pack(side='right')
lbl.pack(fill='x', expand=True)
SAMER SAEID