tkinter and time.sleep

You really should be using something like the Tkinter after method rather than time.sleep(...).

There’s an example of using the after method at this other stackoverflow question.

Here’s a modified version of your script that uses the after method:

from time import time, sleep
from Tkinter import *

def empty_textbox():
    textbox.delete("1.0", END)

root = Tk()

frame = Frame(root, width=300, height=100)
textbox = Text(frame)

frame.pack_propagate(0)
frame.pack()
textbox.pack()

textbox.insert(END, 'This is a test')
textbox.after(5000, empty_textbox)

root.mainloop()

Leave a Comment