Creating a window : Frame : GUI Tk PYTHON examples


PYTHON examples » GUI Tk » Frame »

 

Creating a window


Creating a window

from Tkinter import *

create the root window
root = Tk()

# modify the window
root.title("Create a window")
root.geometry("200x200")

# Start the window's event-loop
root.mainloop()

           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo GUI Tk
» Frame