Is there a way to change the text of the button when the button clicked?
edit: nvm I solved its like text
Is there a way to change the text of the button when the button clicked?
edit: nvm I solved its like text
Does this help you to solve your issue. Using .config()
you can update a button in tkinter
from tkinter import Button,Tk
root = Tk()
def click():
b.config(text='You jus clicked me!')
b = Button(root, text='Click me', command=click)
b.pack()
root.mainloop()