I'm making a Tkinter GUI, and I want a button in it and if you click it there is a label under it and it will display how many times you've clicked. But it tells me there is a Syntax Error but I don't seem to find it.
I've tried to change the " to ' and so on but nothing works!!
def KlickCounter():
Klicks = Klicks + 1
Counter.configure(text='You have clicked the button ' + Klicks ' times')
I expect the Label to display the number "Klicks" which is the number of how many times you've clicked the button.