Creating a window : Frame « GUI Tk « Python
- Python
- GUI Tk
- Frame
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()
Related examples in the same category