我试图在命令之后销毁按钮并制作新按钮 . 我尝试过,但不知道如何解决它 . 请帮助

button1 = Button(window1, text=capitalList[0], font="TkDefaultFont 25",bg = "white", fg = "skyblue",command=next)
button2 = Button(window1, text=capitalList[1], font="TkDefaultFont 25",bg = "white", fg = "skyblue",command=next)
button3 = Button(window1, text=capitalList[2], font="TkDefaultFont 25",bg = "white", fg = "skyblue",command=next)
button4 = Button(window1, text=capitalList[3], font="TkDefaultFont 25",bg = "white", fg = "skyblue",command=next)
button1.place(x=175, y =400)
button2.place(x=450, y =400)
button3.place(x=175, y =500)
button4.place(x=450, y =500)
if button1.command==True:
    button1.destroy()
    button2.destroy()
    button3.destroy()
    button4.destroy()