from Tkinter import *root = Tk()frame = Frame(root, width=100, height=100)frame.pack()root.mainloop()