How to update label on tkinter
问题 I would like to update a label once I press one of the buttons. Here is my code - I added a label (caled label1 ), now I have two issues: It presents some gibberish How do I update the label with text right when the user is pressing the Browse button? from tkinter import * import threading class Window(Frame): def __init__(self, master=None): Frame.__init__(self, master) self.master = master self.init_window() def init_window(self): self.var = IntVar() self.master.title("GUI") self.pack(fill