Tkinter is the standard GUI library for Python. Tkinter in Python comes with a lot of good widgets. Widgets are standard GUI elements, and the Label will also come under these Widgets
Note: For more information, refer to Python GUI – tkinter
Label:
Tkinter Label is a widget that is used to implement display boxes where you can place text or images. The text displayed by this widget can be changed by the developer at any time you want. It is also used to perform tasks such as to underline the part of the text and span the text across multiple lines.
Example:

Setting the position of Tkinter labels
We can use place() method to set the position of the Tkinter labels.
Example 1: Placing label at the middle of the window
Python3
import tkinter as tk
root = tk.Tk()
Label_middle = tk.Label(root,
text = 'Middle' )
Label_middle.place(relx = 0.5 ,
rely = 0.5 ,
anchor = 'center' )
root.mainloop()
|
Output:

Example 2: Placing label at the lower left side of window
Python3
import tkinter as tk
root = tk.Tk()
Lower_left = tk.Label(root,text = 'Lower_left' )
Lower_left.place(relx = 0.0 ,
rely = 1.0 ,
anchor = 'sw' )
root.mainloop()
|
Output

Example 3: Placing label at the upper right side of window
Python3
import tkinter as tk
root = tk.Tk()
Upper_right = tk.Label(root,text = 'Upper_right' )
Upper_right.place(relx = 1.0 ,
rely = 0.0 ,
anchor = 'ne' )
root.mainloop()
|
Output

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
12 Jan, 2021
Like Article
Save Article