problems importing ttk from tkinter in python 2.7
- by Benjimin Boyce
I'm working with an example file in a tutorial that asks me to first do two imports:
from tkinter import *
from tkinter import ttk
I get an error. I researched a bit and found that in python 2.7.x I need to capitalize the 't'in tkinter, so I change to:
from Tkinter import *
from Tkinter import ttk.
the first line no longer gives and error, but…