I want to make two buttons at the bottom of my table in python by using tkinter, one on the right and one on the left How do I do this using the method pack? Because the pack method has four directions, the buttons are placed under each other
quit = Button(text="Quit",font=("Segoe Script", 11), height=1, width=9, bg="indian red")
quit.pack(side="bottom")
restart = Button(text="Restart", font=("Segoe Script", 11), height=1, width=9, bg='indian red')
restart.pack(side="bottom")