So I was messing around with Tkinter, and I was wondering, is there an easy way to wipe whatever widgets you currently have 'packed' and show a new layout?
So, if my fist screen has a button, I want a whole new layout to come up when the user hits that button, but I'd like to keep it in the same tk window.
Additionally, how do I pass arguments with 'command' options, because this doesn't work:
button1 = Button(root,text = 'Press me!',command = say('you pressed me!'))
EDIT: lol, just realized the title is 'Multible', should be Multiple.