How to import Tkinter in python 3.3.0 [duplicate] How to import Tkinter in python 3.3.0 [duplicate] tkinter tkinter

How to import Tkinter in python 3.3.0 [duplicate]


You should use tkinter with first letter "t" must be lower case-sensitive for Python 3.


The name changed in Python 3. Try tkinter with a lowercase 't'.

Many modules were renamed, modified, or forked when Python moved from 2.x to 3.x. I like to use

>>> help('modules')

to see a list of current module names. This works in all versions.