Cómo obtener el texto de la etiqueta Tkinter

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