I have a code in Python and I am trying to create a UI for it using Tkinter. I just started off using Tkinter, and got the following code :
from Tkinter import *
window = Tk()
window.title("Hello world")
window.mainloop()
I am using Jupyter notebook to run the code and it's been several minutes and the code still hasn't given me an output. What exactly wrong with this? Is it the code or Jupyter Notebook?