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
from tkinter import Tk, mainloop root = Tk() # Create window contents. mainloop()Programming Language: Python