Retirez l'élément du pack tkinter

root = Tk()

btn = Button(root, text='Forget Me!').pack()
btn.pack_forget()
Giamblers