Demonstrates creating a window : Frame : Tkinker PYTHON TUTORIALS


PYTHON TUTORIALS » Tkinker » Frame »

 

Demonstrates creating a window


Demonstrates creating a window
from Tkinter import *

root = Tk()

root.title("Simple GUI")
root.geometry("200x100")
root.mainloop()



Leave a Comment / Note


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


PYTHON TUTORIALS

 Navioo Tkinker
» Frame