20 December 2014

Create an application window using Python's Tkinter. Window is the bases of every program, even full screen is actually a window.

Source code viewer
  1. from tkinter import Tk, mainloop
  2.  
  3. root = Tk()
  4.  
  5. # Create window contents.
  6.  
  7. mainloop()
Programming Language: Python