Skip to content
Advertisement

Python-Tkinter: How do I update a whole segment?

I have a segment in my GUI that creates a varying number of labels using a for-loop. Furthermore, I have a button that’s supposed to delete all of these labels and recall the for loop with new information.

However, I can’t figure out how to make my button do that. Specifically do both of these actions together.

I have tried to delete the frame containing the labels with frame.destroy() like this:

JavaScript

That successfully deletes the labels but I can’t figure out how to create new ones.

Same thing with putting the for-loop in a class and deleting the object and creating a new one.

Is there another option than deleting each individual label? I figure that would be rather complicated as each label would need an individual variable name. Haven’t tried that yet, tho.

Thanks :)

Advertisement

Answer

You have to use global frame in each function so that they use the same variable:

JavaScript

Since you just use .pack() the button moves to the top after, but this should work as intended.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement