I am trying to create a simple gui and run in IDLE but every time I run it , it gives me the error :Import Error: No module named 'Tkinter'
This is my code if anybody is wondering:
from Tkinter import *
root = Tk()
root.mainloop()
I have also tried to verify if i have installed tkinter or not with command import tkinter and tkinter._test() and it shows that I have tkinter installed.
 
     
    