Sarıcı bir fonksiyon kullanabilirsiniz.
import tkinter as tk
root = tk.Tk()
def sarici(x):
def artir():
print(x + 5)
return artir
button = tk.Button(root, text="artır", command=sarici(5))
button.pack()
root.mainloop()
Sarıcı bir fonksiyon kullanabilirsiniz.
import tkinter as tk
root = tk.Tk()
def sarici(x):
def artir():
print(x + 5)
return artir
button = tk.Button(root, text="artır", command=sarici(5))
button.pack()
root.mainloop()