import Tkinter def main(): # Create a TK root widget main_window = Tkinter.Tk() # Enter the Tkinter main loop, this will cause the window # to be rendered to the screen. main_window.mainloop() main()