1
vote
Python tkinter label won’t change at beginning of function
How are you creating your Label?
I have this little test setup:
from Tkinter import *
class LabelTest:
def __init__(self, master):
self.test = StringVar()
self …
