My understanding is that the standard set-up for a tkinter program starts off like this:
from tkinter import * from tkinter import ttk
I un
Because tkinter/__init__.py doesn't import ttk, so ttk isn't included in from tkinter import *.
import ttk
ttk
from tkinter import *