Python/Tkinter: fine points about super init and self
Following is very simple code to create a frame and label as a class: class FrameWithLabel(tk.Frame): def __init__(self, parent): super().__init__(self, parent) self.label = tk.Label(self) I have two questions: In an earlier post, it was explained to me why the super init was required (in this case, referring to the tk.Frame), and that without the super… Read More Python/Tkinter: fine points about super init and self