times
shouldn't be a parameter to the function, it should be a global variable so it keeps its value between calls.
times = 0
def helloCallBack():
global times
times = times + 1
messagebox.showinfo( "Clicked!!1", "Hello World")
print("Clicked button " + str(times) + " times")
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…