tags:

views:

35

answers:

1
+3  A: 

You can call grid_forget() on your widget to permanently remove it.

e.g

self.start.grid_forget()

If you wanted to clear the whole window then you could do the same on your main frame.

volting