I have preconception that 'Tkinter' is module that only for Python 3. When I use Python 2, I thought that I must import as first letter of the words as upper-case letter like this.
import Tkinter
I expected that when I typed import Tkinter on Python 2.7.15, It would be printed like this
Traceback (most recent call last) :
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'tkinter'
But In my python 2.7.15, no traceback, error has been occured.
What is the candidate of this?