from tkinter import * window = Tk() x = Button(text="a", padx=20) y = Button(text="aaaaa", padx=20) x.grid(padx=20) y.grid(padx=20) window.mainlo