I'm new to TkInter and using Python to develop UI. So as a way of step-by-step learning, I'm just trying to get a window. I wrote the following simple code:
from Tkinter import Tk
window = Tk()
window.geometry("266x208")
window.title("Claculator")
I'm expecting an empty window that pops up when I run the code, but I get noting. Just Process finished with exit code 0. What am I missing?
PS: Python 2.7, Windows 7