refreshButton = Button(frameList, text ="Refresh",command = print("pressed"))
refreshButton.place(x=50, y=50)
Why does this code not print out "pressed" everytime i press the button but only once when the button is created?
There are no error messages. the problem is that print("pressed") does not execute.