vertical padding between buttons in a column
问题 When I pad the widgets they all just move together on the same frame in 1 big block. I need to be able to separate them and add the padding between each widget on the same frame. This is part of my code I tried: def CreateDisplay(self): self.mainwindow = tk.Tk() self.mainwindow.geometry("800x600") self.mainwindow.wm_title(self.constants.NAME) self.mainwindow.resizable(width=False, height=False) self.frame_main = tk.Frame(master = self.mainwindow) self.frame_title = tk.Frame(master = self