Exemple de Tkinter TextVariable

var = StringVar()
var.set('hello')

l = Label(root, textvariable = var)
l.pack()
aso