This is the code I have written, I don't understand why but nothing appears on my canvas.
def countdown():
for n in range(5, 0, -1):
nr = Label(root, text=n, font="helvetica 25 bold", bg="white")
nr.place(x=590, y=420)
nr.destroy()