why are function arguments on the stack botton code example
Example: tkinter button command with arguments
from functools import partial
#
#
def function_name(arg1):
print(arg1)
#
#tkinter codes for GUI
#
buttonExample = tk.Button(main, text="Button", command=partial(function_name, argument1))