Label Widget Demo : Label « Tkinker « Python Tutorial






Label Widget Demo
import Tkinter

top = Tkinter.Tk()
label = Tkinter.Label(top, text='Hello World!')
label.pack()
Tkinter.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