Translating widgets

The anchor option can move widgets:
quit_button.pack(anchor='w')  
# or 'center', 'nw', 's' and so on
# default: 'center'
ipadx/ipady: more space inside the widget
quit_button.pack(side='top', pady=5, 
                 ipadx=30, ipady=30, anchor='w')

previousnexttable of contents