Cara mendapatkan teks label tkinter

l = tk.Label(text="hello, world")
...
print("the label is", l.cget("text"))
Mappy Show