Как один раз нажать на кнопку и чтобы она оставалась нажатой, пока не будет нажата другая кнопка?
Вот код:
root = tkinter.Tk()
root.geometry('250x350')
root.configure(bg = "white")
root.title("")
root.resizable(False, False)
lb = tkinter.Label(root, text = text)
lb.configure(bg = "white")
lb.place(x = 25, y = 25, height=25, width=200)
but1 = tkinter.Button(root, text = "Привет!", command=main)
but1.config(bd = 1, font = ("Castellar", 25), bg = "white")
but1.place(x = 50, y = 160, height = 50, width = 150)
but2 = tkinter.Button(root, text = "Пока!", command=bye)
but2.config(bd = 1, font = ("Castellar", 25), bg = "white")
but2.place(x = 50, y = 220, height = 50, width = 150)
root.mainloop()