tkinter change button state

Solutions on MaxInterview for tkinter change button state by the best coders in the world

showing results for - "tkinter change button state"
Matías
10 Nov 2017
1btn = Button(root, text="Download", state=DISABLED)
2
3btn.config(state="normal")