Ratatouille heißt: alles zusammen, also sammeln wir heute ein!
>>> from Tkinter import *
>>> root = Tk()
>>> textfenster = Text(root)
>>> textfenster.pack()
>>> eingabe = Entry(root,width=60)
>>> eingabe.pack(side=LEFT)
>>> def hole():
textfenster.insert(END, '\n' + eingabe.get())
>>> but = Button(root,text='Hole', command = hole)
>>> but.pack(side = LEFT)
>>> root.mainloop()
Probiere das Beipiel aus!

AuFgAbEn . . .
textfenster.delete('1.0',END)
>>> # Skript oben
>>> def loesche():
textfenster.delete('1.0',END)
>>> but2 = Button(root,text='Staubsauger', command = loesche)
>>> but2.pack(side = LEFT)
>>> root.mainloop()
Prüfe, ob der Button Hole danach noch funktioniert!