Comment obtenir le texte de l'étiquette Tkinter

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