AttributeError: module ‘tkinter’ has no attribute ‘TkVersion’
In my case, i named the file with the same name as the module.
eg: tkinter.py which causes this error. Try saving the python file name with a different name ttkinter.py. It works!
#import library
import tkinter
#print attributes
print(tkinter.TkVersion)
print(tkinter.TclVersion)
#test GUI
tkinter._test()
O/P:
