my_ttkSeparator = ttk.Separator(root, **options)
my_ttkSeparator.config()
class = Určuje triedu pre widget.
cursor = Definuje kurzor widgetu.
orient = Nastaví orientáciu na vertikálnu alebo horizontálnu.
style = Slúži na zadanie vlastného štýlu widgetu.
takefocus = Určuje, či widget prijme zaostrenie počas klávesnice. Môže byť 0, 1.
from tkinter import *
from tkinter import ttk
root = Tk()
root.geometry('400x300')
root.title('Tkinter Demo')
statusbar = Label(root, text="Hello world", bd=1, relief=SUNKEN, anchor=W)
statusbar.pack(side=BOTTOM, fill=X)
ttk.Label(root, text="First Label").pack()
separator = ttk.Separator(root, orient='horizontal')
separator.pack(fill='x')
ttk.Label(root, text="Second Label").pack()
root.mainloop()