I started learning Tkinter and came across this piece of code for a 2 number calculator. After trying it out myself I noticed something and it confuses the hell out of me even after reading the documentation and playing with the console.
button_equal
& button_clear
don't use Parenthese under the command
parameter. Why is that and why won't it work if I add them.
From what I read I can see that when calling it with parentheses it calls and executes the function. But when called without parentheses it passes a reference? It's still all very fuzzy to me and I would love it if someone could dumb it down for me. Maybe with an example :)
import tkinter as tk
root = tk.Tk()
root.title("Mathz")
### Variables ##########################################################################
buttonWidth = 30
buttonHeight = 20
global f_number
### FUNCTIONS ##########################################################################################
def button_click(number):
current = e.get()
e.delete(0, tk.END)
e.insert(0, str(current) + str(number))
def button_add():
first_number = e.get()
global f_num
f_num = int(first_number)
e.delete(0, tk.END)
def button_equal():
second_number = e.get()
e.delete(0, tk.END)
e.insert(0, f_num + int(second_number))
def button_clear():
e.delete(0, tk.END)
### Defining Widgets ###############################################################################
e = tk.Entry(root, width=35, borderwidth=5, bg='lightgrey')
e.grid(row=0, column=0, columnspan=3)
button_1 = tk.Button(root, text='1', padx=buttonWidth, pady=buttonHeight, command=lambda: button_click(1))
button_2 = tk.Button(root, text='2', padx=buttonWidth, pady=buttonHeight, command=lambda: button_click(2))
button_3 = tk.Button(root, text='3', padx=buttonWidth, pady=buttonHeight, command=lambda: button_click(3))
button_4 = tk.Button(root, text='4', padx=buttonWidth, pady=buttonHeight, command=lambda: button_click(4))
button_5 = tk.Button(root, text='5', padx=buttonWidth, pady=buttonHeight, command=lambda: button_click(5))
button_6 = tk.Button(root, text='6', padx=buttonWidth, pady=buttonHeight, command=lambda: button_click(6))
button_7 = tk.Button(root, text='7', padx=buttonWidth, pady=buttonHeight, command=lambda: button_click(7))
button_8 = tk.Button(root, text='8', padx=buttonWidth, pady=buttonHeight, command=lambda: button_click(8))
button_9 = tk.Button(root, text='9', padx=buttonWidth, pady=buttonHeight, command=lambda: button_click(9))
button_0 = tk.Button(root, text='0', padx=buttonWidth, pady=buttonHeight, command=lambda: button_click(0))
button_plus = tk.Button(root, text='+', padx=buttonWidth - 1, pady=buttonHeight, command=lambda: button_add())
button_equal = tk.Button(root, text='=', padx=69, pady=buttonHeight, command=button_equal)
button_clear = tk.Button(root, text='Clear', padx=buttonWidth * 2, pady=buttonHeight, command=button_clear)
### Positioning Widgets ######################################################################################
button_1.grid(row=3, column=0)
button_2.grid(row=3, column=1)
button_3.grid(row=3, column=2)
button_4.grid(row=2, column=0)
button_5.grid(row=2, column=1)
button_6.grid(row=2, column=2)
button_7.grid(row=1, column=0)
button_8.grid(row=1, column=1)
button_9.grid(row=1, column=2)
button_0.grid(row=4, column=0)
button_clear.grid(row=4, column=1, columnspan=2)
button_equal.grid(row=5, column=1, columnspan=2)
button_plus.grid(row=5, column=0)
root.mainloop()