python tkinter remove all widgets in a labelframe code example
Example: how to destroy all widgets in a frame
for widget in frame.winfo_children():
widget.destroy()
for widget in frame.winfo_children():
widget.destroy()