from Tkinter import *root = Tk()root.title('Frames')for relief in [RAISED, SUNKEN, FLAT, RIDGE, GROOVE, SOLID]: f = Frame(root, borderwidth=2, relief=relief) Label(f, text=relief, width=10).pack(side=LEFT) f.pack(side=LEFT, padx=5, pady=5) root.mainloop()
Name (required)
email (will not be published) (required)
Website