Computer >> Computer tutorials >  >> Programming >> Python

How to get the Tkinter Label text?


Tkinter Labels are used to create and display text or images on the window. It has several components and functions that can be used to customize the label information such as fontfamily, padding, width, height, etc. In order to get the Label text on the window, we can write the value for the text that has to be displayed on the window.

Example

#Import the required library
from tkinter import *

#Create an instance of tkinter frame
win= Tk()

#Define the geometry of the window
win.geometry("600x250")

#Create a Label with Text
my_text= Label(win, text= "This is a New Line Text", font=('Helvetica bold', 16))
my_text.pack(pady=15)

#Print the label text
print(my_text['text'])

win.mainloop()

Output

The above code will display the Label “This is a New Line Text” which can be printed by the print function.

How to get the Tkinter Label text?