In [1]:
from Tkinter import *
In [2]:
master = Tk()
Label(text="one").pack()
separator = Frame(bd=2, relief=RIDGE)
Label(separator,text="three").pack()
separator.pack(fill=X, padx=5, pady=5)
Label(text="two").pack()
In [3]:
mainloop()
In [ ]: