Mega Code Archive

 
Categories / Python Tutorial / Tkinker
 

Demonstrates a label

from Tkinter  import * root = Tk() root.title("Labeler") root.geometry("200x50") app = Frame(root) app.grid() lbl = Label(app, text = "I'm a label!") lbl.grid() root.mainloop()