Altro modo:
>>> import Tkinter as tk
>>> root=tk.Tk()
>>> testo=tk.StringVar(value='pippo')
>>> a=tk.Label(textvariable=testo)
>>> a.pack()
>>> testo.set('pluto')Ciao Daniele _______________________________________________ Python mailing list [email protected] http://lists.python.it/mailman/listinfo/python
