Demonstrates a label : Label « Tkinker « Python Tutorial






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()








18.17.Label
18.17.1.Import only Label from Tkinter libraryImport only Label from Tkinter library
18.17.2.Import all from TkinterImport all from Tkinter
18.17.3.Label Widget DemoLabel Widget Demo
18.17.4.Creating a LabelCreating a Label
18.17.5.Config Label for its background, font and sizeConfig Label for its background, font and size
18.17.6.Add Label and Entry by using table layoutAdd Label and Entry by using table layout
18.17.7.Label demonstration.Label demonstration.
18.17.8.Demonstrates a labelDemonstrates a label
18.17.9.Creating a Class to Handle User InterfacesCreating a Class to Handle User Interfaces