from Tkinter import * root = Tk() myContainer1 = Frame(root) # (1) myContainer1.pack() # (2) root.mainloop()