Tkinter Separator
Introduction to the Tkinter Separator widget A separator widget places a thin horizontal or vertical rule between groups of widgets. To create a separator widget, you use the ttk.Separator constructor like this: sep = ttk.Separator(container,orient=’horizontal’)Code language: JavaScript (javascript) The orient option can be either ‘horizontal’ or ‘vertical’. The following example illustrates how to use a separator widget toContinue Reading