I am creating a program with TKinter and am wondering if there is a more efficient way to delete widgets from the window.
I am aware you can delete them 1 by one with:
widget_name.forget()
is there a more efficient and less tedious way to delete them? Like a delete all command?