I am writing a GUI-based program using Python\'s tkinter library. I am facing a problem: I need to delete all children elements (without deleti
tkinter
You can use winfo_children to get a list of all children of a particular widget, which you can then iterate over:
winfo_children
for child in infoFrame.winfo_children(): child.destroy()